Forum Replies Created
-
AuthorPosts
-
Hi,
Sorry for the delay. Looks like the original or full sized version of the image is used in the page. What is the size of the original image?
Could you provide access to the site so that we could check it properly? Please post the site details in the private field
Best regards,
IsmaelHi,
@mtrebbi: Thank you for the update. Please open a new thread and provide an admin account for the site in the private field so that we could check the issue. We will close this one for now.Best regards,
IsmaelHi,
@lofy: Looks like you have set the testimonial element to have a grid style and added your own css modification to add a background for each item. Please remove the css modification and set the Testimonial Grid Style to Boxed Grid instead.
Best regards,
IsmaelHey Blatze,
Thank you for the inquiry.
Where can we see the issue? Are you using the Blog Posts element? Please post the site or page URL containing the blog posts so that we could check the issue properly. We might have to temporarily disable the plugins while checking the issue.
Best regards,
IsmaelNovember 12, 2020 at 11:34 am in reply to: Sidebar not showing on shop page and product page #1260079Hi,
We could still use the snippet in the previous thread to move the sidebar to the left, but we have to change the css code a bit. Please add the snippet from the previous thread in the functions.php file, and use this css code instead.
.single-product-main-image { width: 25%; } .single-product-summary { overflow: hidden; width: 45%; float: right; margin-right: 5%; } .single-product .sidebar { width: 25%; }
We just set the single-product-summary container to float to the right instead of the left. This should move the sidebar to the left side of the product content.
Best regards,
IsmaelHey Thomas,
Thank you for the inquiry.
We could not reproduce the issue on our end. The parent menu item with drop down or child menu items opens in a single tap. And just curious, what would be the issue if a parent menu item has to be double tapped?
Best regards,
IsmaelHi,
Using columns and image elements is probably a much better and more simple approach. You just need to make sure that the height of the portrait image is twice of that of the landscape ones plus the spaces. All images should have the same width.
Please check the screenshot below.
// https://imgur.com/4luQddt
// https://imgur.com/6ANnYFVThere are two 1/2 columns in a row, and the Row Settings > Row Layout > Equal Height Columns is enabled. We could remove the default column spaces and use css to control it manually but in this example, we are using the default spaces and added this css code to adjust the width and size of the space in between.
#top div .av_one_half { margin-left: 10px; width: calc(50% - 20px); } #top div .av-flex-placeholder { width: 10px; }
Best regards,
IsmaelNovember 12, 2020 at 4:51 am in reply to: Multilanguage results in ajax search with Polylang and Relevanssi #1260044Hi,
We could use the SearchWP plugin instead, then use this snippet in the functions.php file to integrate the plugin search query to the AJAX search form.
// https://kriesi.at/support/topic/ajax-search-search-wp-doesnt-work/#post-1259151
Thank you for your patience.
Best regards,
IsmaelHi,
Thank you for the inquiry.
The only difference between the two templates or pages is that the gravatar in the author page (enfold\includes\loop-about-author.php line 76) is wrapped around a section container with the author-box class name. This section is not available in the blog template (enfold\includes\loop-index.php line 253). Unfortunately, we are not sure know how the plugin switches from the default gravatar to the lettered image, but the markup might have something to do with it.
<section class="author-box" itemprop="author" itemscope="itemscope" itemtype="https://schema.org/Person"> AUTHOR MARKUP HERE INCLUDING GRAVATAR </section>
Best regards,
IsmaelHi,
Did you use the snippet that @guenni007 provided in the previous thread?
function register_custom_footer_widget(){ $footer_columns = avia_get_option( 'footer_columns', '5' ); for ($i = 1; $i <= $footer_columns; $i++){ unregister_sidebar( 'av_footer_'.$i ); register_sidebar(array( 'name' => 'Footer - column'.$i, 'before_widget' => '<section id="%1$s" class="widget clearfix %2$s">', 'after_widget' => '<span class="seperator extralight-border"></span></section>', 'before_title' => ' <h5 class="widgettitle">', 'after_title' => '</h5> ', 'id'=>'av_footer_'.$i )); } } add_action( 'widgets_init', 'register_custom_footer_widget', 11 );
This will unregister the footer widgets, and register them back with the new before_title value.
// https://kriesi.at/support/topic/heading-tags-in-the-footer-widget-areas/#post-1198686
Best regards,
IsmaelHey ClimbingSocks,
Thank you for the inquiry.
1.) The title and breadcrumb is disabled on the site, so we enabled it temporarily so that we could inspect the elements. To place the breadcrumb under the title, please add this css code.
.title_container .breadcrumb { position: relative; right: auto; top: 0; margin-top: 0; margin-left: -2px; }
2.) To hide it on mobile view, add this css code.
@media only screen and (max-width: 767px) { /* Add your Mobile Styles here */ .title_container .breadcrumb { display: none !important; } }
3.) And use this to remove the prefix “You are here:”.
.breadcrumb-title { display: none !important; }
Hope that helps.
Best regards,
IsmaelHi,
Thank you for the inquiry.
We have to modify the enfold\config-templatebuilder\avia-shortcodes\postslider\postslider.php file and add the year above the featured image markup, which is around line 772 of the said file.
$output .= $thumbnail ? "<a href='{$link}' data-rel='slide-" . avia_post_slider::$slide . "' class='slide-image' title='{$image_link_title}'>{$thumbnail}</a>" : '';
Did you add the year as a custom field? If so, then we could use the get_post_meta function to get the value of the custom field and render it in the page.
// https://developer.wordpress.org/reference/functions/get_post_meta/
Best regards,
IsmaelHey nickgin,
Thank you for the inquiry.
How can we make that container appear in the page? Have you tried adjusting the z-index property of the cart collaterals container? Please provide the necessary steps so that we could check the container.
Best regards,
IsmaelHey nickgin,
Thank you for the inquiry.
Where can we see this issue? Did you also modify the add to cart button? It is possible that the default add to cart button from the theme does not recognize the changes in the quantity input, or that the selectors used in the script do not match the actual elements in the product page.
Best regards,
IsmaelNovember 11, 2020 at 3:06 pm in reply to: Extended Layer Slider dont show „next-preview“ functions #1259898Hi,
Thank you for the clarification.
Are you referring to the post navigation located on both sides of the page? By default, this navigation will not display if there is a full width element in the page such as the layer slider. You have to add this snippet in the functions.php file to change that behavior.
function avf_post_nav_settings_mod($settings) { $settings['is_fullwidth'] = false; $settings['skip_output'] = false; return $settings; } add_filter('avf_post_nav_settings','avf_post_nav_settings_mod', 999, 1);
Best regards,
IsmaelNovember 11, 2020 at 3:01 pm in reply to: WPML / Easy slider / image links to Lightbox / wrong picture when language diff #1259894Hi,
Thank you for the update.
Manual linking approach: “Easy slider” > select image > “advanced” “Link Einstellungen” “Link zu Bild hinzufügen” I used instead of “Öffne Bild in einer Lightbox” > “Manuell festlegen >https://…
Defining the URL manually or setting the image URL manually will not work because WPML has to know the ID of the attachment in order to retrieve the other version of the image in another language. Unfortunately, image or attachment post type is not available in the Image Link? drop down.
Best regards,
IsmaelNovember 11, 2020 at 2:41 pm in reply to: Using Wholesale Order Plugin – Add to Cart Not Displaying Properly #1259892Hi,
Thank you for the clarification.
Did you disable the wholesale plugin? We do not see any wholesale products in the front page, or any products with the wholesale price as shown in the screenshot. Please activate the plugin temporarily or post the login details in the private field so that we could check the issue further.
For additional assistance, please try to keep in touch with the plugin developers.
Best regards,
IsmaelHey SyberKnight,
Thank you for the inquiry.
Could you provide a screenshot or a mockup of the layout that you want to create? Looks like this is not possible using the default elements because you cannot combine or show an icon list in a masonry element, so your other option is to get a custom code somewhere with the layout that you are after, or find a custom plugin. Unfortunately, we do not know of any plugin that has this feature.
Best regards,
IsmaelHi,
Thank you for the inquiry.
Is this a staging site? Can we deactivate the plugins temporarily via FTP? We will rename the plugins directory because it is possible that one of the plugins in combination with the theme is causing the issue.
Do you remember doing anything before this issue happens?
The reCaptcha is standard in all WordPress CMS. It’s part of WordPress.
Google reCAPTCHA is not a standard feature in WordPress, so it might be from a plugin, a custom snippet, or could be an option added by your host. Did you install the Contact Form 7 plugin? Adding the following snippet in the functions.php file should disable the CF7 recaptcha script.
remove_action( 'wp_enqueue_scripts', 'wpcf7_recaptcha_enqueue_scripts' );
Best regards,
IsmaelHi,
@HolgerBusse: As explained above, the theme will only render the content of the Google Analytics field if it contains the tracking ID. Did you also add the Google Analytics snippet in the field? The theme will only render the content of that field if the “UA-” string or text, which is a part of the tracking ID, is found.Best regards,
IsmaelNovember 11, 2020 at 12:47 pm in reply to: Shortcode not rendering when category styling set to fullwidth page banner #1259854Hey crabjack,
Thank you for the inquiry.
We might have to wrap the description output with the do_shortcode function in the avia_woocommerce_parallax_banner function. This function or snippet is in the enfold\config-woocommerce\config.php file around line 1135.
if($description) $output .= "<h1>".$description."</h1>";
Replace the line with:
if($description) $output .= "<h1>".do_shortcode($description)."</h1>";
Best regards,
IsmaelNovember 11, 2020 at 12:34 pm in reply to: Anchor point links not working with mobile device #1259850Hi,
Thank you for the inquiry.
Is the scroll position a bit off on mobile view? This might be due to this modification which sets the header container to stick or to have a fixed position on scroll.
.html_header_top.html_header_sticky #top #wrap_all #header { position: fixed; }
Best regards,
IsmaelNovember 11, 2020 at 12:28 pm in reply to: Custom Login Not Working for Advanced Classifieds and Directory Pro Plugin #1259849Hey jstonestreet,
Thank you for the inquiry.
Does it work correctly when a default theme is active, or when not using the Enfold theme? Please try to temporarily disable the page preloading, custom 404 and maintenance mode settings in the theme options because these features could trigger a redirect and might be causing the issue.
Best regards,
IsmaelNovember 11, 2020 at 12:17 pm in reply to: Product Variation OImage are not shown, if Main product image is set #1259846Hey BlutVampir,
Thank you for the inquiry.
You might have to set the Enfold > Shop Options > Product Gallery to Woocommerce 3.0 Gallery instead of the default gallery from the theme. This should make the variation image switch work without losing the main product image.
Best regards,
IsmaelHi,
Thank you for the update.
You might have to modify the archive.php template directly, or use the ava_after_main_title hook to render additional content above the category description. In the archive.php file, the category description starts around line 33, so the category image code can be added above that line. By default, uploading images to the categories is not available, so you will have to install a plugin or add a custom snippet.
Please check these plugins:
// https://wordpress.org/plugins/categories-images/
// https://wordpress.org/plugins/wp-custom-taxonomy-image/Best regards,
IsmaelHey havi,
Thank you for the inquiry.
The schema markup from the theme is added inline combined with the template markup while Yoast schema is JSON-LD, a type of schema added as JSON, so the theme’s schema markup should not have affected the plugin’s. How do you check the schema markup?
Best regards,
IsmaelHey aliciapotts,
Thank you for the inquiry.
Could you give us an example of a broken link to the shopping cart page? Did you create a cart page, or import the default Woocommece data? These broken links might be from the demo data.
Best regards,
IsmaelHey!
Thank you for the info.
According to one of our developers, the issue might have something to do with the security plugin which might be causing the AJAX call or function to fail. This error occurs when we try to open an element using an editor account.
Er is een fout opgetreden – Het lijkt er op dat u niet langer bent ingelogd. Ververs de pagina en probeer het opnieuw a.u.b.
Can we deactivate the plugins temporarily while checking the issue?
Best regards,
IsmaelHi,
That is why you have to register another thumbnail with a different name for the image with a different crop position. Both thumbnails will have the same height and width, but they should not have the same name when you register them.
Best regards,
IsmaelNovember 10, 2020 at 11:33 am in reply to: Invisible 301s being created av-blog-meta-category-disabled #1259524 -
AuthorPosts