Forum Replies Created

Viewing 30 posts - 21,361 through 21,390 (of 67,482 total)
  • Author
    Posts
  • in reply to: Revolution Slider 6 not working #1140097

    Hi,


    @nationalintel
    : You can now download version 4.6.2 from your themeforest account. We’ll close this now.

    Best regards,
    Ismael

    in reply to: Change url of Woocommerce shop homepage #1140096

    Hi,

    Thank you for the update.

    We can’t access the dashboard anymore using the login details above. Did you change it? Please try to set the current shop page as the base shop page in the WooCommerce > Settings > Products panel.

    Best regards,
    Ismael

    in reply to: Header Shopping Cart Icon disable dropdown menu on hover #1140095

    Hey!

    That container is automatically populated by the woocommerce_mini_cart function or the ‘cart/mini-cart.php’ template.

    /**
    	 * Output the Mini-cart - used by cart widget.
    	 *
    	 * @param array $args Arguments.
    	 */
    	function woocommerce_mini_cart( $args = array() ) {
    
    		$defaults = array(
    			'list_class' => '',
    		);
    
    		$args = wp_parse_args( $args, $defaults );
    
    		wc_get_template( 'cart/mini-cart.php', $args );
    	}
    

    You can override that by defining the same function and return null.

    function woocommerce_mini_cart() {
       return null;
    }

    Cheers!
    Ismael

    in reply to: Magnific Popup background #1140093

    Hi,

    Thank you for the update.

    The following css code applies the white background color to the lightbox gallery container.

    .mfp-gallery {
        background: #fff !important;
    }
    

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The category settings in the blog posts element doesn’t affect the side navigation (https://codex.wordpress.org/Function_Reference/get_adjacent_post). The navigation fetches the adjacent posts by default — ordered by date. You can add the filter in the functions.php file. Make sure that the posts have no categories in common.

    Best regards,
    Ismael

    in reply to: Randomize post slider but… #1140089

    Hey!

    But on that Sticky-Post you can see this Sticky Post in the Postslider too.

    Have you tried using the !is_single function to wrap the array_merge?

    Cheers!
    Ismael

    in reply to: Custom Template for Posts #1140088

    Hi,

    You should probably place echo before the get_field function. The get_field function doesn’t render the data in the template automatically.

    Thank you for the update.

    Best regards,
    Ismael

    in reply to: CSS being ignored after update to 4.6.2 #1140086

    Hi,

    Thank you for the update.

    There should be a space between the custom css class attribute “subtledbvdb” and the “.avia-button.avia-size-medium” selector. And you have to use lowercase, so the following class attribute is invalid.

    .subtleDbvdb
    

    It should be:

    .subtledbvdb
    

    Best regards,
    Ismael

    in reply to: Portfolio Grid: Category fileters missing on translated page #1140084

    Hi,

    The translation of the portfolio categories are not displaying in their respective languages. You should be able to select the translated term in the portfolio grid element, but it’s not the case in your installation. How did you create and translate the portfolio categories?

    UPDATE: The translated categories are not displaying when the block builder is active. We set the editor to classic temporarily. You can adjust that in the Theme Options panel. Just look for the “Select Your Editor” settings.

    Best regards,
    Ismael

    in reply to: reCAPTCHA problem + background video first loading #1140076

    Hi,

    Thank you for the update.

    The Appearance > Editor panel is not accessible. We may need to edit the spam protection file in order to debug the issue properly. Please post the FTP login details in the private field.

    Best regards,
    Ismael

    in reply to: Custom fonts showing as italic on some font weights #1140075

    Hey zerodotnine,

    Thank you for the inquiry.

    Can you give us access to the site? We would like to check the settings.

    Best regards,
    Ismael

    in reply to: After update some problems contact form / magazine element #1140073

    Hi,

    Thank you for the update.

    Can we have access to the site? Please post the login details in the private field.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    This is possible, but you have to manually edit the title of the images in the Media > Library panel. The value of the title attribute is what the lightbox display as caption.

    Best regards,
    Ismael

    in reply to: Error updating enfold #1140071

    Hi,

    Thank you for the update.

    Are you trying to update the theme automatically in the theme options? You may need to update the theme manually via FTP. Have you tried that? Please visit the documentation for more info.

    // https://kriesi.at/documentation/enfold/theme-update/#update-via-ftp

    Best regards,
    Ismael

    in reply to: WP Blog (backoffice) title bar use Enfold alternate color #1140069

    Hey Caiser_Souze,

    Thank you for the inquiry.

    We set the Enfold > General Styling > “Mostra stili personalizzati nell’Editor blocchi backend” to the second option to prevent the theme styles from being applied in the block editor.

    Best regards,
    Ismael

    in reply to: FILTER PRICE DONT WORK #1140068

    Hey UNBUENPLAN GROUP,

    Thank you for the inquiry.

    The price filter seems to be working properly. How can we reproduce the issue? (see private field)

    Best regards,
    Ismael

    in reply to: Social share links #1139924

    Hi,

    Thank you for the update.

    Do you have JAWS 15? According to the following article, the software will be able to read the text using the aria-label attribute. This attribute is present in the social share icons.

    // https://www.deque.com/blog/text-links-practices-screen-readers/

    We also added the following css code to display the anchor text back.

    #top .avia_hidden_link_text {
        display: inline;
    }
    

    Let us know if it changes anything. Please don’t forget to purge the plugin and browser cache.

    Best regards,
    Ismael

    in reply to: Sticky posts – cant make it work on homepage #1139918

    Hi,

    Sorry for the delay.

    The default query will be ignored once you use that filter, which is probably why the category sort no longer works as it should. Where did you add the magazine element?

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    It seems to be working properly on a test page (see private field). Where can we see the issue?

    Best regards,
    Ismael

    in reply to: FONT AFTER UPDATE 4.6.1 #1139905

    Hi,

    Thank you for the update.

    Looks like the font is no longer available in the latest version but we are not sure why. You can add it back by uploading it to the Custom Font manager. More info in the documentation.

    // https://kriesi.at/documentation/enfold/typography/#register-additional-google-fonts-for-theme-options

    Best regards,
    Ismael

    in reply to: product page customisation #1139901

    Hey anantharam,

    Thank you for the inquiry.

    You should be able to move the product tabs using this snippet in the functions.php file.

    add_action('after_setup_theme', 'ava_move_product_elements');
    function ava_move_product_elements() {
         remove_action( 'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 1 );
         add_action(    'woocommerce_after_single_product_summary', 'woocommerce_output_product_data_tabs', 10 );
    }

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    The login details seems to be invalid. Please check it carefully. Just to clarify, you get a 404 error when you update the portfolio items. Is that correct?

    Best regards,
    Ismael

    in reply to: Contact Form – Email body for yourself #1139880

    Hi,

    Thank you for the update.

    Yes, this is possible with the “avf_form_message” filter. Usage example can be found in the following thread.

    // https://kriesi.at/support/topic/contact-form-html-field/#post-1131752

    The filter holds the actual message from the form, the value of the form fields and parameters.

    Best regards,
    Ismael

    in reply to: Header two Logos #1139870

    Hi,

    The stylesheets are merged or compressed, so the site is probably loading the old stylesheet without the recent changes. Please toggle the Performance > File Compression settings after adding the code.

    Thank you for the update.

    Best regards,
    Ismael

    in reply to: Randomize post slider but… #1139864

    Hi,

    We should be the one apologizing. We replied 4 days after your post.

    Anyway, you may need to wrap this code inside an !is_single conditional function.

    $include = array_merge($sticky, $include);
    

    You’re adding the sticky post in the post__not_in parameter, but then the line above still merges the sticky post in the array.

    Thank you for the update.

    Best regards,
    Ismael

    Hi,

    Sorry for the troubles.

    This issue occurs because the home or front page is also set as the custom 404 page. In the latest version 4.6.2, there is a new option for the Custom Error 404 Page where you can redirect the visitors to a selected page without setting the status code to 404. Unfortunately, we won’t be able to help you further if you don’t update the theme. Please let us know once the theme is upgraded to version 4.6.2.

    Best regards,
    Ismael

    in reply to: Use original image size for masonry #1139844

    Hi,

    Thank you for the update.

    We can’t reproduce the issue on our end, but we replaced “height” with “min-height” because it limits the container of the items on mobile view, cutting off the content. This is what we see on our end on desktop view.

    Screenshot: https://imgur.com/a/77JQnRx

    We do see a large gap or space between some of the items on mobile view due to this css code.

    a#av-masonry-1-item-138, a#av-masonry-1-item-823, a#av-masonry-1-item-817, a#av-masonry-1-item-814, a#av-masonry-1-item-809, a#av-masonry-1-item-806 {
        height: 830px !important;
    }

    Best regards,
    Ismael

    in reply to: WooCommerce pagination of filtered product results #1139840

    Hi,

    Thank you for the update.

    The issue here is that the pagination ignores the URL query, so the filters are gone once you go to the next or previous pages. You have to find a way to apply the current query to the pagination links. It can be done via JavaScript.

    Best regards,
    Ismael

    in reply to: Change url of Woocommerce shop homepage #1139837

    Hi,

    The snippet is already there when we edited the functions.php file. And the shop page seems to be displaying as it should be. (see private field)

    Thank you for the update.

    Best regards,
    Ismael

    in reply to: Magnific Popup background #1139836

    Hi,

    Did you toggle the Performance > File Compression settings after adding the code?

    Is there a way to keep the grayed out background for the pop-up windows (when Read More.. is clicked at the header) and have white background for enlarged photos?

    That is possible but it will require some modification. Unfortunately, we can’t help you with that. By default, the markup of the lightbox container will be the same regardless of the source or of the event that triggers it, so we won’t be able to identify which is which.

    Best regards,
    Ismael

Viewing 30 posts - 21,361 through 21,390 (of 67,482 total)