Forum Replies Created

Viewing 30 posts - 47,191 through 47,220 (of 65,998 total)
  • Author
    Posts
  • in reply to: Shop Page #457074

    Hey!

    Oops.. My bad! The first code should go to the functions.php file. You need to adjust the url:

    /**
     * Changes the redirect URL for the Return To Shop button in the cart.
     *
     * @return string
     */
    function wc_empty_cart_redirect_url() {
    	return 'http://www.manyhearts.co.uk';
    }
    add_filter( 'woocommerce_return_to_shop_redirect', 'wc_empty_cart_redirect_url' );
    

    The second code should go to the Quick CSS field. Please try it without the first code.

    Regards,
    Ismael

    in reply to: Add onclick event in button shortcode #457071

    Hey!

    Honestly, I haven’t tried monitoring a WordPress installation server before so I’m not familiar on server activities and/or any server related troubleshooting procedure. Anyway, what is that page specifically? Please give us a temporary login details so that we can check it. It’s kinda weird that the ajax script is being executed even when you’re not editing or using the dashboard.

    I’m not sure if this is going to help but it can help speed up the dashboard, and maybe, with enough luck fix the issue at hand. Add this at the very bottom of wp-config.php file:

    define('CONCATENATE_SCRIPTS', false );
    

    Best regards,
    Ismael

    in reply to: Masonry Gallery WPML URL Support #457065

    Hi!

    Alright. I can see the issue now. Please edit the en version of the page then toggle the masonry gallery options, specifically the Image Link settings. Test the page again. If it doesn’t work, please post the login details here so that we can check it.

    Best regards,
    Ismael

    in reply to: Menu Footer #457062

    Hi!

    I’m sorry about that. We already have this code, right?

    @media only screen and (max-width: 767px) {
    #footer .flex_column:nth-child(3), #footer .flex_column:nth-child(4) {
      width: 48% !important;
      float: left;
    }}

    This line is the media query:

    @media only screen and (max-width: 767px) {
    
    }

    Inside that media query, we can add css declarations that is going to be applied on a limited scope ( on our example, screen with maximum width of 767px ). The final snippet should look like this:

    @media only screen and (max-width: 767px) {
    #footer .flex_column:nth-child(3), #footer .flex_column:nth-child(4) {
      width: 48% !important;
      float: left;
    }
    
    .footer_color {
      background: #222222 url(//newinceptions.com/wp-content/uploads/2015/05/Footer-Background2.png) center bottom no-repeat scroll;
      background-size: cover;
    }
    }

    Add it the child theme’s style.css file or the Enfold > General Styling > Quick CSS field.

    Cheers!
    Ismael

    in reply to: Urgent : Sidebar i braking just on single page #457059

    Hi!

    Yes, you mentioned that but, in rare cases, theme files tend to get corrupted from extraction especially when you update the files automatically in the Theme Updates panel. We can’t reproduce the issue on our end so it’s either a third party plugin or your own modification in the theme that is causing the issue. Or a corrupted / incomplete file from the update. If possible, please do the very first suggestion:

    2. Completely delete Enfold from your WordPress theme directory before downloading + uploading a fresh copy from themeforest.

    This time, do it via FTP: http://kriesi.at/documentation/enfold/portfolio-item/update-theme-files-with-ftp/

    Best regards,
    Ismael

    in reply to: Juicebox Error: Config XML file not found. #457056

    Hi!

    Not sure what you mean by that but if you do a little test by adding this in the functions.php:

    add_action('wp_head', function() {
      $url = plugins_url();
      echo $url;
    });

    ..check any page on the site, you’ll see the plugins directory text at the very top of the site. The plugins’ url is set to default. The theme doesn’t manipulate the plugins directory.

    Best regards,
    Ismael

    in reply to: On Portfolio – No Expand image symbol #457046

    Hi!

    Alright. Please provide the login details here, we will check it. Or you can re-create the home page by using the newly created page with the portfolio grid. Note that you can save the home page template by clicking the Template button on the top right corner of the layout builder.

    Cheers!
    Ismael

    Hi!

    If the code above didn’t work, use this:

    add_action('after_setup_theme','avia_remove_debug', 10);
    function avia_remove_debug(){
    	remove_action('wp_head','avia_debugging_info', 1000);
    	remove_action('admin_print_scripts','avia_debugging_info', 1000);
    }

    Regards,
    Ismael

    Hey!

    Please try this:

    add_action('init','avia_remove_debug');
    function avia_remove_debug(){
    	remove_action('wp_head','avia_debugging_info',1500);
    	remove_action('admin_print_scripts','avia_debugging_info',1500);
    }

    If it doesn’t work in the plugin, try to add it directly in the functions.php file.

    Regards,
    Ismael

    in reply to: Tables do not scroll on mobile #456515

    Hi!

    Looks like you added the tables manually. Try to add this to the Quick CSS field to make it scrollable:

    .togglecontainer table {
      overflow: scroll;
    }

    Cheers!
    Ismael

    in reply to: Shop Page #456514

    Hi!

    1-2.) You don’t have to set the front page as shop page. Add this in the Quick CSS field functions.php file to change the link of the return to shop button:

    /**
     * Changes the redirect URL for the Return To Shop button in the cart.
     *
     * @return string
     */
    function wc_empty_cart_redirect_url() {
    	return 'http://yourdomain.com/your-page/';
    }
    add_filter( 'woocommerce_return_to_shop_redirect', 'wc_empty_cart_redirect_url' );

    3.) Can you please provide a screenshot of the “warning” issue? Use imgur or dropbox. If you want to change the notification box, use this in the Quick CSS field:

    #top div.woocommerce-message {
      border-color: red;
      background-color: black;
      color: white;
    }

    Regards,
    Ismael

    in reply to: Masonry Gallery – same number of images per row #456504

    Hi!

    Alright. Just add this in the Quick CSS field to adjust the default width of the masonry items:

    .av-masonry-entry {
      width: 16.66%;
    }

    Cheers!
    Ismael

    in reply to: Urgent : Sidebar i braking just on single page #456500

    Hey!

    Yes, the theme options is working now. The masonry element seems to be the one causing the issue. Did you modify anything on the theme files? Please try to remove the config-templatebuilder > avia-shortcodes > masonry_entries.php file then replace it with a new copy.

    Regards,
    Ismael

    in reply to: next/prev arrows for products #456493

    Hi sigifinsrl!

    Thank you for using Enfold.

    Try to replace the code with this:

    add_filter('avia_post_nav_settings', 'avia_post_nav_settings_mod');
    function avia_post_nav_settings_mod($settings)
    {
      if(is_singular('product')) {
        $settings['taxonomy'] = 'product_cat';
      }
    	$settings['same_category'] = true;
    	return $settings;
    }

    Best regards,
    Ismael

    in reply to: Add onclick event in button shortcode #456491

    Hey!

    Looks like this is a common issue with GoDaddy. I found a lot of inquiries regarding the issue but found no conclusive solution for it:

    https://wordpress.org/support/topic/err_empty_response
    https://wordpress.org/support/topic/error-code-err_empty_response-1
    https://wordpress.org/support/topic/err_empty_response?replies=18
    https://wordpress.org/support/topic/someone-please-help-err_empty_response

    You can see the Godaddy signature all over the place. Have you tried to contact your hosting provider?

    Best regards,
    Ismael

    in reply to: Previous Theme to Download #456488

    Hey Brian!

    Thank you for using Enfold.

    We can provide an older version of the theme but please be aware that this version is not going to work properly on latest versions of WordPress. You may need to use WP version 4.0 or lower. You can download the theme here: http://bit.ly/1MDKUY4

    Regards,
    Ismael

    in reply to: Issue vwith page #456477

    Hi!

    Alright. Please check the layer slider, see if there is anything you can find that can break the layout of the site. I placed the columns inside a color section and it seems ok now: http://www.teamchat.com/zh/%E9%A6%96%E9%A1%B5/

    Regards,
    Ismael

    Hi!

    Please remove the image element with the “guarantee” badge. Add this to the functions.php file:

    add_action( 'ava_after_main_container', function() {
      echo '<img class="avia_image guarantee-image" src="http://neu.shk-schaefer.de/wp-content/uploads/2012/11/Button.png" alt="" title="Button" itemprop="contentURL">';
    });

    Use this in the Quick CSS field to adjust the position of the image:

    .guarantee-image {
      position: absolute;
      z-index: 10000;
      top: 20%;
      left: 10px;
      width: 150px;
      height: auto;  
    }

    Cheers!
    Ismael

    in reply to: Enfold Woocommerce questions #456472

    Hi Sam!

    Thank you for using Enfold.

    The website isn’t loading when I visit the page. Please check.

    1.) Add this in the Quick CSS to remove the title and breadcrumb container on the shop page:

    .woocommerce .title_container {
      display: none;
    }

    2.) You can download the german language files here: https://github.com/woothemes/woocommerce-language-packs/blob/master/packages/de_DE.zip

    Place the language files in the wp-content > plugins > woocommerce > i18n > languages folder. Note that language files are not complete, if there are missing translations, you have to translate it manually.

    Best regards,
    Ismael

    in reply to: Problem with category view and WPML #456465

    Hi GabrielAlberola!

    Thank you for using Enfold.

    What is the current PHP version of the server? Please ask your hosting provider about this. Also, please ask them for the php error logs, we would like to inspect it. Maybe, we can find something there that is related to this issue. Yes, it seems to be a problem with the grid layout because I found another thread with the same issue.

    **The issue on the previous thread is different. The solution provided there is not going to work for this specific issue.

    Cheers!
    Ismael

    in reply to: Masonry Gallery WPML URL Support #456454

    Hey iwebware!

    Thank you for using Enfold.

    I can only see the english version when I checked the page. Please reactivate the german version so that we can discern the issue. I checked the screenshot and I’m not sure if you use the absolute url in the custom link field. If not, please use the full url when linking the masonry gallery images to another page.

    Regards,
    Ismael

    in reply to: Scheduled Edits/Changes to a Post or Page #456451

    Hi slui!

    Thank you for using Enfold.

    We haven’t tried those plugins personally but they should work on the default editor. I have a doubt that it will work on the advance layout builder though.

    Best regards,
    Ismael

    in reply to: Issue vwith page #456449

    Hey gupshupdotme!

    Thank you for using Enfold.

    The markup of the page is not correct or it’s different from the en version. There maybe an open html tags that you forget to close. Please check the content of the page, make sure that all html tags are closed properly. If possible, please create a test page, we would like to check it.

    Best regards,
    Ismael

    in reply to: Secondary Menu Under Slider #456448

    Hey allinmom!

    Thank you for using Enfold.

    1.) Disable the Shrinking Header option on Enfold > Header > Header Behaviour panel.

    2.) Use the full width submenu element. Place it below the slider.

    Cheers!
    Ismael

    in reply to: Urgent : Sidebar i braking just on single page #456447

    Hey!

    Go to the Enfold > Theme Options then toggle any settings, save the changes and you’ll see that it’s not working. Again, please deactivate the plugins temporarily because one of these plugins might be causing the issue.

    Cheers!
    Ismael

    in reply to: On Portfolio – No Expand image symbol #456446

    Hi!

    I’m sorry but you gave us a link to the demo overview page. The image overlay ( the blue arrow ) should be added automatically. Please update the theme to the latest version, 3.2. That should fix the issue.

    Cheers!
    Ismael

    in reply to: Woocommerce Product Variations and Layout Editor #456443

    Hey!

    The advance layout builder is included in the theme. You need to contact the WooCommerce support, maybe they got a separate plugin for product variation images. It’s actually not an issue with the theme, the variation images is working on the default editor. It just so happens that there is no shortcode for the variation images if you use the advance layout builder. I don’t know of any advance page builder available in the market that have this feature right out of the box. You can request the feature here: https://kriesi.at/support/enfold-feature-requests/

    Regards,
    Ismael

    in reply to: Add right sidebar to a page with a portfolio grid #456441

    Hi yoeladam!

    Thank you for using Enfold.

    Portfolio grid elements are set to full width by default. You have to place it inside a 1/1 column. And I noticed that you modified some of the template files (sidebar.php, footer.php) in the child theme folder, please update the theme to the latest version then get the original file from the parent theme.

    Cheers!
    Ismael

    in reply to: Problem with the gallery #456440

    Hey!

    Are you trying to enable the lightbox? Did you enable the “Use Lightbox” option? Please edit the gallery then set the “Use Lightbox” to “Yes”.

    Regards,
    Ismael

    in reply to: Menu Footer #456438

    Hi!

    You can try this:

    .footer_color {
      background: #222222 url(//newinceptions.com/wp-content/uploads/2015/05/Footer-Background2.png) center bottom no-repeat scroll;
      background-size: cover;
    }

    Add the code inside the media query.

    Regards,
    Ismael

Viewing 30 posts - 47,191 through 47,220 (of 65,998 total)