Forum Replies Created

Viewing 30 posts - 20,281 through 20,310 (of 67,479 total)
  • Author
    Posts
  • in reply to: Portfolio Grid and Portfolio Masonry #1161160

    Hi,

    Thank you for the update.

    The development team said that this is a known issue and is currently working on a solution. It hasn’t been finalized yet but hopefully, it will be included in the upcoming patch. @guenter is adjusting the link picker so that it returns the actual ID of the post/page in the current or active language.

    Best regards,
    Ismael

    in reply to: Internet Explorer 11 compatability #1160886

    Hi,


    @ingridbrauner
    : The site contains an older version of the theme, 4.5.7, which is probably why the modification is not working. Try to upgrade the theme to the latest version, 4.6.3.1. You don’t need to manually add the patch because it’s already included in that version. Please open a new thread if the issue persists after the update. We’ll close this thread for now.

    Best regards,
    Ismael

    in reply to: Sticky header on mobile covers up page content #1160882

    Hi,

    Awesome! Glad it’s working now. Please feel free to open a new thread if you need anything else.

    Have a nice afternoon.

    Best regards,
    Ismael

    in reply to: When a page is modified, almost all content is deleted. #1160881

    Hi,

    Great! Glad it’s fixed. Please don’t hesitate to open a new thread if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Masonry Gallery Display #1160880

    Hi,

    Thank you for the update.

    The site is still loading an old version of the merged stylesheets, which doesn’t contain the recent changes. We disabled the Performance > File Compression settings temporarily to regenerate the stylesheets. You should be able to see the changes in the page or in the masonry element now.

    Best regards,
    Ismael

    Hi,

    Thank you for the update.

    According to events calendar team, the error is from a legacy format that they haven’t been able to remove because a lot of themes or extensions are still using it. The testing tool still recognizes the correct data, so you can ignore the location error for now. (see private field)

    Related thread:
    // https://theeventscalendar.com/support/forums/topic/missing-field-location-google-search-console/

    Best regards,
    Ismael

    in reply to: Question about #wrap-all #1160877

    Hi,

    Thank you for the update.

    You don’t have to do anything. The filter will just allow the execution of shortcodes that are not added directly in the builder. It may or may not be related to the issue. Unfortunately, we can’t help you any further if we can’t access the site.

    Best regards,
    Ismael

    in reply to: Featured image 'title' is not as expected. #1160875

    Hi,

    Thank you for the update.

    The custom Archive template doesn’t use the loop-index.php file, only the default archives template like archives.php, tag.php files, index.php and the default blog element or config-templatebuilder > aviashortcodes > blog.php file. Try to look for this line:

    get_template_part( 'includes/loop', 'index' );
    

    Best regards,
    Ismael

    in reply to: Spam Mails #1160869

    Hi,

    Thank you for the screenshot.

    That is the default behavior of the captcha field. If you want to remove the question mark while typing on the input field, try to edit the config-templatebuilder > aviashortcodes > contact > contact.js file, look for this code around line 31:

    send.button.on('click', checkElements);
    

    Below, add this code:

    	var captcha = form.find('.captcha');
    	label = form.find('.value_verifier_label');
    
    captcha.focus(function() {
    	var l = $(label.selector);
    	var e = l.text();
    	l.text(e.replace("?", ""));
    });
    

    Best regards,
    Ismael

    Hi,

    It is possible to add more than 5 columns in a row. Please follow the instruction in this article.

    // https://kriesi.at/documentation/enfold/columns/#six-columns-or-more

    Let us know if you need help with it.

    Best regards,
    Ismael

    in reply to: Layer Slider Scale after update #1160865

    Hi,

    Thank you for the update.

    We modified the css code in the Quick CSS field to adjust the header layout on mobile view. This is how it looks on smaller screens now.

    Screenshot: https://imgur.com/a/W2Wycm8

    Best regards,
    Ismael

    in reply to: Remove DatePublished from reviews / from Google #1160862

    Hi,

    Thank you for the update.

    Yes, the hook removal doesn’t seem to work. Please replace the whole snippet with this filter instead.

    add_filter('woocommerce_structured_data_review', function($markup, $comment) {
    	unset($markup['datePublished']);
    	return $markup;
    }, 10, 2);

    Best regards,
    Ismael

    in reply to: enfold child categorie style #1160860

    Hi,

    Can we have access to the dashboard? We would like to test the code. Please make sure that the Appearance > Editor panel is accessible.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Layer Slider Button Not Responsive on Mobile #1160858

    Hi,

    Thank you for the update.

    The modification is actually working, but you may need to adjust css values a bit to actually see the difference.

    Screenshot: removed as per user request

    As you can see in the screenshot above, we set the font-size to 16px, width to 200px and added the line-height property to vertically align the text.

    Best regards,
    Ismael

    in reply to: Extra Elements #1160857

    Hi,

    Thank you for the update.

    We tried to modify the functions.php file but got an error. Please look for this code around line 252..

    	'twitter' 		=> array( 'font' =>'entypo-fontello', 'icon' => 'ue800'),
    

    .. replace the font set with “vero”:

    	'twitter' 		=> array( 'font' =>'vero', 'icon' => 'ue800'),
    

    Best regards,
    Ismael

    in reply to: Product Schema Entirely Missing For Custom Products #1160856

    Hi,

    Thank you for the update.

    The data markup actually exists in the product page, but for some reason the testing tool is not reading it correctly. What happens when the html minification and Yoast schema are disabled?

    This is the product data markup:
    // https://pastebin.com/LNQ595v1

    And another data markup generated by Yoast:
    // https://pastebin.com/PMHbzaGj

    We can’t reproduce the issue on our own installation. The testing tool returns the product’s schema markup correctly.
    // https://imgur.com/a/2uwpNhJ

    Best regards,
    Ismael

    in reply to: Produktbilder unscharf #1160855

    Hi,

    Thank you for the inquiry.

    Where can we see the products? Please provide a link to the shop page or the product page so that we can inspect it. Have you tried to adjust the default product image size in the Appearance > Customizer > Woocommerce panel?

    // https://docs.woocommerce.com/document/image-sizes-theme-developers/

    Best regards,
    Ismael

    in reply to: Featured image 'title' is not as expected. #1160853

    Hi,

    I don’t want to insert the post title–I want to insert the ‘title’ attribute

    We do understand you’re inquiry. The post_title in that modification refers to the title attribute of the featured image, not the title of the actual post.

    what other pages execute this file (loop-index.php)?

    It’s also used in the archive.php template.

    Best regards,
    Ismael

    in reply to: Screen option tick boxes don't seem to be working #1160615

    Hi,

    Thank you for the update.

    Did you check it on an iPad Pro? The “Hide on medium sized screens” in the screen options will only work when the screen width is equal or less than 989px, so it won’t work on an iPad Pro in landscape mode.

    Best regards,
    Ismael

    in reply to: reCAPTCHA #1160583

    Hi,

    Thank you for the update.

    It’s possible that the email provider or server rejects the messages because the email address is from a different domain called “arteimmagine”, which it doesn’t recognize. You should use a “dssecurity” email address, or any email address from popular email providers like gmail and yahoo. You may need to configure SMTP if you chose to use the latter.

    // https://kriesi.at/documentation/enfold/contact-form/#troubleshoot

    Best regards,
    Ismael

    in reply to: Ajax Portfolio WordPress Preview #1160581

    Hi,

    Thank you for the update.

    The preview will not work if only content is in the additional portfolio settings.

    Are you referring to the single portfolio pages when you say “preview”? You have to add a separate content for the AJAX preview and the preview in the single portfolio page. If you want to display the same content on both the AJAX preview and the single porfolio page, then you have to add the same content in the default editor or advance layout builder — whichever one you’re currently using — and the AJAX Portfolio Preview Settings.

    Best regards,
    Ismael

    in reply to: Sticky header on mobile covers up page content #1160580

    Hi,

    Thank you for the update.

    Can we access the dashboard? We would like to test the css code. Do you need the header fixed on mobile devices?

    Best regards,
    Ismael

    in reply to: Border in Masonry visible in Chrome #1160552

    Hi,

    you manage to send me back the example of which I said that there it does not occur.

    Sorry about that. We still however don’t see the issue on the other two pages where the border should occur. Please check the screenshots below:

    one-paragraph: https://imgur.com/a/EFpDCHr
    three-paragraph: https://imgur.com/a/6CyZG4T

    Those screenshots are from Chrome Windows 10.

    Thank you for your patience.

    Best regards,
    Ismael

    in reply to: Enfold + Woocommerce + Ajax + Filter #1160551

    Hi,

    Thank you for the update.

    Yes, the pagination is generated from the theme. However, the issue is that the filter script doesn’t consider scenarios where a pagination exists in a page. The issue can only be rectified by editing the filter script. You should contact the plugin author for additional info.

    Best regards,
    Ismael

    in reply to: Masonry Gallery Display #1160550

    Hi,

    Thank you for the update.

    1.) No problem. Yes, it is possible to change the value of the title field. Glad to know that you figured it out because I completely missed it myself.

    got the emboldened title, the tile and caption centred or inset under the image.

    2.) The title is already using the thick version of the font, so you may need to use another font with a thicker variation if you want to adjust it more. To align it to the center, please use this css code.

    .av-masonry-entry .av-masonry-entry-title {
    	font-weight: 700;
    	text-align: center;
    }

    3.) Adjust the masonry content background with this css code.

    .main_color .container .av-inner-masonry-content, #top .main_color .container .av-masonry-load-more, #top .main_color .container .av-masonry-sort, .main_color .container .av-masonry-entry .avia-arrow {
    	background-color: #525252;
    }

    Glad to hear that you’re enjoying the theme! Please don’t hesitate to ask here in the forum whenever necessary.

    Best regards,
    Ismael

    in reply to: Issue with Google Analytics tracking after 4.6 #1160548

    Hi,

    Sorry about that. I actually read the orange line from 2018 — fault of not reading legends.

    We confirmed that the tracker is still collecting the data even when the cookie consent option is enabled. Please check the screenshot below.

    // https://imgur.com/a/vWJum58

    As you can see the tracker is still retrieving the site data even if we haven’t accepted the cookies yet. (see private field)

    Best regards,
    Ismael

    Hi,

    Awesome! Glad it worked. We’ll close the thread now.

    Have a nice evening.

    Best regards,
    Ismael

    in reply to: Gutenberg font color change doesn't work #1160543

    Hi,

    Great! Glad that you found a solution. We’ll close this thread for now. Please don’t hesitate to open a new one if you need anything else.

    Have a nice day.

    Best regards,
    Ismael

    in reply to: Custom Post Types + Advanced Layout Builder + Block Editor #1160542

    Hi,

    Thank you for the update.

    We don’t see the Gutenberg or block editor when we switch to the Advance Layout Builder/ALB. Can you give us a screenshot of the issue? You can upload the screen capture to imgur or dropbox. We modified the “Croatia” post in the Regions post type. (see private field)

    Best regards,
    Ismael

    in reply to: How to replace rather than add to enfold sidebar? #1160541

    Hi,

    Thank you for the update.

    Is there any way – at a page level – to keep the page navigation sidebar for the site overall, but overwrite with customer sidebar for specific pages?

    You can use the following filter to disable the Page Sidebar Navigation on specific pages.

    
    function avf_sidebar_menu_filter_mod($menu, $args, $post) {
       if(is_page(array(42, 'about', 'Contact')) {
           $menu= '';
       }
       return $menu;
    }
    add_filter('avf_sidebar_menu_filter', 'avf_sidebar_menu_filter_mod', 10, 3);
    

    Add the id, slug or title of the pages where you don’t want to show the page navigation into the array inside the is_page conditional function.

    // https://developer.wordpress.org/reference/functions/is_page/

    Please don’t forget to re-enable the Page Sidebar Navigation from the Enfold > Sidebar Settings.

    Best regards,
    Ismael

Viewing 30 posts - 20,281 through 20,310 (of 67,479 total)