Forum Replies Created

Viewing 30 posts - 8,041 through 8,070 (of 10,428 total)
  • Author
    Posts
  • in reply to: Sidebar starting halfway down the page #616014

    Hey JLAM8!

    Color section is meant to be a full width element so it is expected to push the sidebar below. Please use a grid section. if you have any go ahead and share the link to the page where we can see the issue and share a mockup of what you are trying to create so we can provide you with accurate solution.

    Best regards,
    Vinay

    in reply to: My blog image looks strange . #616011

    Hey!

    The site looks good on my end in Chrome, IE and FF on windows please see screenshot attached. Try to hard reload and empty browser cache and review the site again.
    To do a hard refresh… First press F12 to open the Chrome Dev Tools then hold down Ctrl and click on the Reload button.

    If you still have any issue please provide us a mockup you can upload it to dropbox or imgur.com and share the link here.

    Regards,
    Vinay

    in reply to: White screen on Enfold theme update #616010

    Hi!

    The site looks good on my end this is not a theme issue you are facing. The browser which you are viewing is caching old files. Try to hard reload and empty browser cache and review the site again.
    To do a hard refresh… First press F12 to open the Chrome Dev Tools then hold down Ctrl and click on the Reload button.

    Best regards,
    Vinay

    in reply to: [woocommerce enfold wp4.5 products with variants] #616009

    Hey!


    @Pixelbits
    thanks for your understanding and sharing your workaround. We will try to re-produce this issue on our end and get back to you.

    For others who have created new tickets we have replied to you on your tickets. If you have not received a reply please wait we are working hard to help every one asap.

    Regards,
    Vinay

    Hey!

    Sorry for the delay. Please share the link to the page where we can inspect the element in question :)

    Cheers!
    Vinay

    in reply to: Avia Advanced Layout not working #616004

    Hi!

    It loads fine on my end. Please do a hard refresh… First press F12 to open the Chrome Dev Tools then hold down Ctrl and click on the Reload button.

    I also noticed some js errors in console it might be due to a plugin conflict
    To find the plugin in conflict please follow the below steps

    1. Goto plugins page > Deactivate all active Plugins
    2. Updated WordPress and Enfold to latest version if you have not.
    3. Activate one plugin at a time… refresh the page and check for the issue.
    4. Make sure the plugins are all updated

    Best regards,
    Vinay

    in reply to: How to add an anchor (to a non Colour Section) #615999

    Hey!

    Glad we could help! We have put together some useful info about enfold theme please feel free to check it out here – http://kriesi.at/documentation/enfold/

    Cheers!
    Vinay

    Hey!

    Yes you are correct the site looks good on my end and has updated correctly :) Try to hard reload and empty browser cache and review the site again.
    To do a hard refresh… First press F12 to open the Chrome Dev Tools then hold down Ctrl and click on the Reload button.

    Best regards,
    Vinay

    in reply to: New update just ruined fusion builder #615995

    Hi tuckermayo!

    Please add the below code in functions.php

    function modify_jquery() {
    if (!is_admin()) {
    	wp_deregister_script('jquery');
    	wp_register_script('jquery', 'https://code.jquery.com/jquery-1.11.3.min.js');
    	wp_enqueue_script('jquery');
    }
    }
    add_action('init', 'modify_jquery');

    If you still have any issue please provide the link to your site so we can take a closer look at it.

    Regards,
    Vinay

    in reply to: Enfold Updaes #615993

    Hey!


    @geckonia
    appreciate your help!

    Glad you received the info you were looking from :)

    Cheers!
    Vinay

    in reply to: Set Column Width in px and not % #615991

    Hey!

    Please check the link in private for example wee have setup. We have added the blow css in Quick CSS.

    /*fixed width */
    .fixed-width {
      width: 500px !important;
      max-width: 500px !important;
      min-width: 500px !important;
    background:gold;
    }
    
    @media only screen and (max-width: 767px) {
    .fixed-width {
      width: 200px !important;
      max-width: 200px !important;
      min-width: 200px !important;
    }}

    Regards,
    Vinay

    in reply to: Set Column Width in px and not % #615986

    Hi!

    Sorry for the delay.

    We are working on your ticket please wait while we update the results here soon.

    Cheers!
    Vinay

    in reply to: Main Menu Links font sizing #615985

    Hi John!

    Please add the below CSS in Quick CSS

    .av-main-nav li .avia-menu-text {
      font-size: 20px!important;
    }

    Best regards,
    Vinay

    in reply to: Serious Problem #615981

    Hi!

    Please add the below code in functions.php

    function modify_jquery() {
    if (!is_admin()) {
    	wp_deregister_script('jquery');
    	wp_register_script('jquery', 'https://code.jquery.com/jquery-1.11.3.min.js');
    	wp_enqueue_script('jquery');
    }
    }
    add_action('init', 'modify_jquery');

    You are probably using an old version of the theme. We have released an enfold update to match the changes made in the latest version of wordpress 4.5
    If you are not using a child theme please backup any custom changes you may have added to the theme and update enfold to latest version 3.5.2 make sure you have the correct API key from themeforest.
    If you are not able to view the update option in wordpress dashboard. Please update the theme manually via FTP following the steps provided here http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/
    Once you have updated to the latest version you can remove the above code from functions.php

    Best regards,
    Vinay

    Hey huberific!

    Please add the below code in functions.php

    function modify_jquery() {
    if (!is_admin()) {
    	wp_deregister_script('jquery');
    	wp_register_script('jquery', 'https://code.jquery.com/jquery-1.11.3.min.js');
    	wp_enqueue_script('jquery');
    }
    }
    add_action('init', 'modify_jquery');

    You are probably using an old version of the theme. We have released an enfold update to match the changes made in the latest version of wordpress 4.5
    If you are not using a child theme please backup any custom changes you may have added to the theme and update enfold to latest version 3.5.2 make sure you have the correct API key from themeforest.
    If you are not able to view the update option in wordpress dashboard. Please update the theme manually via FTP following the steps provided here http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/
    Once you have updated to the latest version you can remove the above code from functions.php

    Cheers!
    Vinay

    in reply to: Featured Image Slider Disappeared #615979

    Hey dusty909!

    Please add the below code in functions.php

    function modify_jquery() {
    if (!is_admin()) {
    	wp_deregister_script('jquery');
    	wp_register_script('jquery', 'https://code.jquery.com/jquery-1.11.3.min.js');
    	wp_enqueue_script('jquery');
    }
    }
    add_action('init', 'modify_jquery');

    You are probably using an old version of the theme. We have released an enfold update to match the changes made in the latest version of wordpress 4.5
    If you are not using a child theme please backup any custom changes you may have added to the theme and update enfold to latest version 3.5.2 make sure you have the correct API key from themeforest.
    If you are not able to view the update option in wordpress dashboard. Please update the theme manually via FTP following the steps provided here http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/
    Once you have updated to the latest version you can remove the above code from functions.php

    Regards,
    Vinay

    in reply to: Demo import construction not working properly #615978

    Hey!

    We need to be able to access the site admin dashboard but the login credentials you’ve provided do not work please re-check send us working login credentials with user role as ‘administrator’ and permission to disable all plugins and add custom code if necessary to resolve the issue.

    Regards,
    Vinay

    in reply to: Accordion Not Opening or Toggling #615977

    Hi UniteNetworking!

    The site looks good on my end please see screenshot attached. Try to hard reload and empty browser cache and review the site again.
    To do a hard refresh… First press F12 to open the Chrome Dev Tools then hold down Ctrl and click on the Reload button.

    Regards,
    Vinay

    in reply to: Space above Table #615976

    Hi!

    I see there are no bottom margin for the table other than that everything looks fine to me. please add the below css and adjust the bottom margin value.

    div .avia-table {
        margin-bottom: 20px!important;
    }

    Best regards,
    Vinay

    in reply to: URGENT – Problems after wordpress 4.5 update #615559

    Hi!

    We have replied to your ticket.

    Best regards,
    Vinay

    in reply to: Sandwich button disappeared #615551

    Hey Nicola!

    We are working on your ticket please wait while we update the results here soon.

    Please add the below code in Enfold > General Styling > Quick CSS

    feel free to adjust the max-width value to suit your design.

    @media screen and (max-width: 999px){
    #top #advanced_menu_toggle {
         display: block !important; 
    }}

    Regards,
    Vinay

    • This reply was modified 9 years, 2 months ago by Vinay.
    in reply to: Enfold Update Struggles #615550

    Hey dmenditc!

    Please share the link to the page where we can inspect the element in question and help you resolve it :)

    Cheers!
    Vinay

    in reply to: Enfold Slider elements not working at all #615549

    Hi SCT2016!

    Please add the below code in functions.php

    function modify_jquery() {
    if (!is_admin()) {
    	wp_deregister_script('jquery');
    	wp_register_script('jquery', 'https://code.jquery.com/jquery-1.11.3.min.js');
    	wp_enqueue_script('jquery');
    }
    }
    add_action('init', 'modify_jquery');

    To see the changes please hard refresh the browser… First press F12 to open the Chrome Dev Tools then hold down Ctrl and click on the Reload button.

    Regards,
    Vinay

    in reply to: Images disappeared #615547

    Hi!


    @bagha
    Please add the below code in functions.php

    function modify_jquery() {
    if (!is_admin()) {
    	wp_deregister_script('jquery');
    	wp_register_script('jquery', 'https://code.jquery.com/jquery-1.11.3.min.js');
    	wp_enqueue_script('jquery');
    }
    }
    add_action('init', 'modify_jquery');

    Regards,
    Vinay

    in reply to: image carousel? #615546

    Hey!

    Glad you found a workaround for this :)

    Thank you for using Enfold.

    Regards,
    Vinay

    in reply to: Theme update #615545

    Hey somaticrevolution!

    Please add the below code in functions.php

    function modify_jquery() {
    if (!is_admin()) {
    	wp_deregister_script('jquery');
    	wp_register_script('jquery', 'https://code.jquery.com/jquery-1.11.3.min.js');
    	wp_enqueue_script('jquery');
    }
    }
    add_action('init', 'modify_jquery');

    You are probably using an old version of the theme. We have released an enfold update to match the changes made in the latest version of wordpress 4.5
    If you are not using a child theme please backup any custom changes you may have added to the theme and update enfold to latest version 3.5.2 make sure you have the correct API key from themeforest.
    If you are not able to view the update option in wordpress dashboard. Please update the theme manually via FTP following the steps provided here http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/
    Once you have updated to the latest version you can remove the above code from functions.php

    Best regards,
    Vinay

    in reply to: Updated to 4.5, still can't get it to work #615543

    Hi!

    The site looks good on my end please see screenshot attached. Try to hard reload and empty browser cache and review the site again.
    To do a hard refresh… First press F12 to open the Chrome Dev Tools then hold down Ctrl and click on the Reload button.

    Regards,
    Vinay

    in reply to: Some Website Content is Not Loading Properly #615539

    Hi!

    As @Basilis mentioned I too can see your site working fine and there are not errors in console. Please see screenshot attached. Try to hard reload and empty browser cache and review the site again.
    To do a hard refresh… First press F12 to open the Chrome Dev Tools then hold down Ctrl and click on the Reload button.

    Cheers!
    Vinay

    in reply to: URGENT – Problems after wordpress 4.5 update #615536

    Hey!


    @silviamg
    If you are still getting error message please create a new ticket(as the private content will be visible only to mods and the person who creates the thread) and provide us with the login details in private content so we can take a closer look at it.

    Cheers!
    Vinay

    in reply to: URGENT – Problems after wordpress 4.5 update #615535

    Hi!

    If you are using a child theme you can place it at the bottom
    If you are using enfold main theme please add it right after the below line in functions.php

    if(isset($avia_config['use_child_theme_functions_only'])) return;
    

    Cheers!
    Vinay

Viewing 30 posts - 8,041 through 8,070 (of 10,428 total)