Forum Replies Created

Viewing 30 posts - 6,961 through 6,990 (of 8,514 total)
  • Author
    Posts
  • in reply to: Gallery thumb and caption center alignment. #132110

    I’m not really getting what it is you are trying to do. Not all elements are going to work flawlessly when stacked inside columns or with certain portfolio image size settings.

    Everything is coded to adapt for responsive design but there is a bit of control on what source image a user can choose for the output before css changes that images size for the container.

    For #3, you can do something like:

    #top .visible-caption {
    text-align: center;
    clear: both;
    float: left;
    }

    But the images aren’t taking up the full width of the container so the text is correctly centered but the images are not (since they are floating left as well and there isn’t a true float: center).

    in reply to: Layerslider problem #133258

    Hi Letian,

    The layersliders should only be added to a layout using the Advanced Layout Editor. The regular LayerSlider shortcodes aren’t support at this time.

    Regards,

    Devin

    in reply to: Wordpres 3.6 – you can update now :) #132680

    Version.txt for 1.9 shows:

    2013 August 6 - Version 1.9

    please update:
    - style.css - new version number
    - css/layout.css - various small fixes
    - functions.php
    - functions-enfold.php
    - includes/helper-responsive-megamenu.php
    - includes/helper-conditional-megamenu.php
    - config-woocommerce/config.php - fixed bug with 404 page
    - config-woocommerce/admin-options.php - Added layout options (header, footer etc)
    - config-bbpress/bbpress-mod.css - improved bbpress forum widget stylings

    folders to update:

    -folder js:
    -fixed a bug with the easy slider not rotating properly

    -folder config-templatebuilder:
    - fixed: a bug that prevented the layoutbuilder from showing
    - fixed: a bug that occurs with custom css label and image element
    - fixed: a bug with the gallery caption

    -folder framework:
    -fixed: required symbol for date input field
    -added: theme support flag for conditional menu:
    add_theme_support('avia_conditionals_for_mega_menu');
    using the flag will enable conditional logic for menus
    (you can show/hide menu items based on user level, login, current page, etc)

    in reply to: Enable Comment on Pages #132714

    Hi indy1003,

    It was a missed / in Ismaels original code which I’ve now corrected. So give it a try now:

    //wordpress function that loads the comments template "comments.php"
    comments_template( '/includes/comments.php');

    Regards,

    Devin

    in reply to: Woocommerce product without a product image #133162

    Hi eakozel,

    Try adding this function to the bottom of your functions.php file and define your placeholder with it:

    /*
    * goes in theme functions.php or a custom plugin. Replace the image filename/path with your own :)
    *
    **/
    add_action( 'init', 'custom_fix_thumbnail' );

    function custom_fix_thumbnail() {
    add_filter('woocommerce_placeholder_img_src', 'custom_woocommerce_placeholder_img_src');

    function custom_woocommerce_placeholder_img_src( $src ) {
    $upload_dir = wp_upload_dir();
    $uploads = untrailingslashit( $upload_dir['baseurl'] );
    $src = $uploads . '/2012/07/thumb1.jpg';

    return $src;
    }
    }

    You just need to replace /2012/07/thumb1.jpg with the route to your image in your uploads folder. So something like /2013/08/yourimagename.jpg .

    Regards,

    Devin

    in reply to: Wordpres 3.6 – you can update now :) #132671

    Right now updates are planned for this upcoming week. Its the second sentence in the initial post by me above :)

    Beta and Release Client testing has been done but that doesn’t mean the same thing as live testing on 3.6. With WordPress, it is never a good idea to upgrade unless you have already confirmed all of your active plugins and theme has been updated to support any changes as well.

    in reply to: Advanced Layout editor not working #132939

    Hi lephenix,

    If you are using WordPress 3.6 you’ll need to downgrade to 3.5.2.

    If you are not, disable all active plugins or dropins and make sure that you have at least 96mb of php memory that is usable by WordPress. See: http://www.dailyblogging.org/wordpress/increase-wordpress-memory-limit/

    Regards,

    Devin

    I’m not really sure where there is a disconnect happening but if you import the dummy data this is the settings for the slide with the various screens which will keep the whole thing properly responsive

    2u77rjd.png

    in reply to: customize header #132827

    Hi Xavier,

    That level of customization would need to be done by a freelance developer in order to maintain the responsive functionality and proper cross browser support.

    Getting to that header is just a bit beyond what we can help customize.

    Since it has been done already, what you can do however is look at the custom css that that site has already used which should help you in creating something very similar: http://media.pcamobile.de/dynamic_avia/enfold_en.css

    With the comments that are already there it is just a matter of copying over and modifying things to how you’d like them.

    For #3 Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    #top .main_menu .menu > li >a {
    font-family: Times; /*your font */
    }

    Regards,

    Devin

    in reply to: ENFOLD JS and CSS load order #133018

    Hi

    Open up the themes functions.php file and look for:

    /*
    * Register frontend javascripts:
    */
    if(!function_exists('avia_register_frontend_scripts'))

    This function loads in all the css and javascript that the theme uses in the order that is needed.

    Regards,

    Devin

    Hi jalmedar,

    The theme has not been updated to work with 3.6 yet. Your best route will be to downgrade to 3.5.2 if you want to make sure there are no issues working with your installation.

    Try following the steps in this video to downgrade WordPress to 3.5.2: http://www.youtube.com/watch?v=OwNR6NVhVFQ

    Regards,

    Devin

    in reply to: How do I Install the latest version of my theme. #133060

    Hi Chris,

    When you download the theme files from your downloads on themeforest it will be version 1.8.x (I don’t know the exact version that is live right now).

    If you are getting any other version make sure your downloads folder is clean of any duplicates and that you are extracting the correct file.

    I’ve made a video on how to update via ftp here: https://vimeo.com/channels/aviathemes/67209750

    Regards,

    Devin

    in reply to: Using a bigger font size in the header for Enfold #132520

    Hi SGS_Marketing,

    Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    .phone-info {
    font-size: 14px;
    }

    Regards,

    Devin

    in reply to: Can't install the theme. Fatal Error. #132515

    Glad you were able to find the fix :)

    Let us know if you have any other questions or issues.

    Regards,

    Devin

    in reply to: Enfold header options: Slide out menu #132461

    Hi danielsami,

    Do you mean when the menu switches to the responsive menu?

    I believe that is the intended behavior for mobile in that the mobile menu only shows the top+1 down to prevent overly complex menus.

    Regards,

    Devin

    Hi gerry3211,

    If you use something like Yoast SEO you can control the titles for each page individually however you want as well as set full site wide settings from the plugin options.

    Regards,

    Devin

    in reply to: Turning off Iphone optimized view #132952

    Hi beshoy,

    Go to the Enfold theme options and then from the General Settings tab you can change to the Fixed layout option with the dropdown under “Responsive Layout”.

    Regards,

    Devin

    in reply to: Trigger anchor link to tab or accordion tab #132517

    Hi sonllc,

    If you inspect the code of your page you can get the anchor ID for that specific tab and then just point your link there. It should be #tab-id-1 ,2, 3 etc by default but inspecting it with your browsers code inspector tool will make sure you are pointing to the right one.

    For example: http://kriesi.at/themes/enfold/shortcodes/tabs/#tab-id-2

    Regards,

    Devin

    in reply to: Heading and menu modifications #131889

    Glad you were able to get it sorted out and posting your final fixes :)

    Regards,

    Devin

    in reply to: How to Place a Button on Title Line #132513

    Hi jjranson,

    No, unfortunately not. The title container is generated dynamically so you would need to create a custom page template just for that page.

    What you could do is don’t show the title for that page and instead use the layout editor to add a title+button for that top of the page.

    Regards,

    Devin

    in reply to: Home Page error #132582

    Glad you were able to get it sorted out :)

    Let us know if you have any other questions or issues.

    in reply to: Default Header Settings #131121

    Glad we could help :)

    Let us know if you have any other questions or issues.

    Regards,

    Devin

    in reply to: Logo Placement #132522

    Hi Michael,

    For that kind of effect you would need to have a freelance developer write some custom css so that the responsive functionality is kept intact as well as no issues with cross browser support.

    Regards,

    Devin

    in reply to: POST SLIDER DOES NOT WORK PROPERLY #133002

    Hi Javier,

    Please see this post: https://kriesi.at/support/topic/wordpress-36-update-wait-for-theme-updates

    The theme has not been update to work with WordPress 3.6 and in order to return to compatibility you should downgrade back to 3.5.2

    Regards,

    Devin

    in reply to: English PO files needed #132950

    Hi blubbline,

    Take a look at this topic and downloads from Peter: https://kriesi.at/support/topic/please-contribute-and-translate-enfold

    Regards,

    Devin

    in reply to: av_heading not Responsive #132591

    Hi bmacstudio,

    I’m not sure what you mean. Do you have an example we can take a look at?

    Regards,

    Devin

    in reply to: Multiple Images Per Variation… #129304

    Make sure your images are all under 200kb each so that there isn’t an issue with loading large images.

    In addition, check through the extensions documentation for any mentions on speed issues or optimization.

    in reply to: Website Extremely Broken in IE8 #132157

    Hi Tom,

    Try re-downloading the theme files from your downloads on ThemeForest and then installing those newest files. There have been a number of bug fixes released recently and that way we are working on the same version.

    Regards,

    Devin

    in reply to: Logo size bigger is overlapping the slider #131995

    Hi smorrone,

    You should *never* modify the theme’s css files directly. Instead, always add your css changes to either the Quick CSS field in the theme styling options tab or the custom.css file in the css folder.

    Try adding the following CSS to your Quick CSS (located under the Styling Tab in the theme options) or the custom.css file in the css folder of your theme files:

    .fixed_header.social_header #main {
    padding-top: 188px;
    }

    This will push the main container down far enough that your new larger header will not overlap.

    I posted this in your other topic on the same issue but just as an FYI our Queue system goes by oldest post to newest. So when you self respond to your own post it actually pushes the post to the end of the line.

    Typically we respond within 24 hours and only get to that point when we are very very busy like we are right now.

    Regards,

    Devin

    in reply to: Problem with Headerand menu, overlapping slider. Help! #132459

    Hi smorrone,

    Looking at your posting history Nick answered you a day ago so I’ll continue your topic there. Keep in mind our Queue system goes by oldest posted item to newest so re-posting or self bumping a topic actually pushes your post to the end of our queue and it then takes us longer to answer.

    Regards,

    Devin

Viewing 30 posts - 6,961 through 6,990 (of 8,514 total)