Forum Replies Created
-
AuthorPosts
-
April 8, 2024 at 12:28 pm in reply to: Template Standart / delete Template / changed Template not working #1439489
Hi,
You are using a blog element on a page to show your bolg. you are not using a “template” you don’t need to remove the other “templates” and you don’t need to “add” templates.
The reason you page doesn’t show correctly is because to set the page as the default blog:
this is not the setting you want, I correct it for you:
I corrected your “template” error and now you page shows correctly.
Please remove your “templates” this is not the correct approach.Best regards,
MikeHi,
I linked to your /blog/ page above and again below. I don’t know the name of the plugin but the element has the wpspw prefix.
Since they are noindex pages you can ignore them, you can also add them to your robots.txt so the won’t be crawled like this:User-agent: * Disallow: /page Disallow: /ru/page Disallow: /it/page Disallow: /nl/page Allow: /wp-content/uploads
some other disallows that some find helpful like wp-includes, wp-admin, and the search strings “?”:
Disallow: /cgi-bin Disallow: /wp-admin Disallow: /wp-includes Disallow: /wp-content/plugins Disallow: /wp-content/cache Disallow: /wp-content/themes Disallow: /*?* Disallow: /*?
Best regards,
MikeHey gatehealing,
Yes, you can create as many sites on your domain or sub-domain as you like, your staging site is still on your domain so you are fine.Best regards,
MikeHi,
When you create a link within text on the page it is not treated the same way by WordPress as when it is added to a field that is processed by WordPress like the social icons links are.
So give the plugin a try.Best regards,
MikeHi,
Sorry I thought you might have a simple SMTP mail service from your webhost, nonetheless I see that you are uing a CDN and when I load your contact page I see the file:
https://your-site.com/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js
this file is from your CDN and the contents look like it is encoding/decoding characters in your email, based on this: String.fromCharCode(l)
I don’t know what this is used for, but perhaps you are right that this is not Chinese but some encoding?
I would try asking your CDN or disable it from your site for a few days and see if this still happens when the file is not used anymore.Best regards,
MikeApril 7, 2024 at 9:42 pm in reply to: Template Standart / delete Template / changed Template not working #1439437Hi,
These are the default template options:
the Default Template is the file template-builder.php and can not be removed.
To remove the other ones:
Archives
Blank – No Header, no Footer
LayerSlider Blank Template
Add this code to the end of your child theme functions.php file in Appearance ▸ Editor:function remove_layerslider_template( $templates, $theme, $post ) { unset( $templates['layerslider-blank'] ); unset( $templates['template-archives.php'] ); unset( $templates['template-blank.php'] ); return $templates; } function adjust_template_filter() { remove_filter( 'theme_page_templates', [ 'LayerSliderClass', 'add_templates' ], 10, 3 ); add_filter( 'theme_page_templates', 'remove_layerslider_template', 10, 3 ); } add_action( 'init', 'adjust_template_filter' );
when you add this the meta box will not show in the backend because there is no choice to be made, the Default template will be used.
If you add your own template the meta box will then show, for example I created a file named my-template-blank.php with the Template Name: My Blank Template:
and now the meta box shows with this option:
If you also want to remove the LayerSlider blank template meta box:
Add this code to the end of your child theme functions.php file in Appearance ▸ Editor:function remove_layerslider_meta_box() { remove_meta_box( 'ls-page-meta-box', 'post', 'side' ); remove_meta_box( 'ls-page-meta-box', 'page', 'side' ); } add_action( 'add_meta_boxes', 'remove_layerslider_meta_box', 11 );
Best regards,
MikeHi,
Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHey ballindigital,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 479px) { .logo img { max-height: 56px !important; } }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Sorry I’m not able to access, please see the screenshot in the Private Content area.
If the webhost doesn’t give you access to the error logs, and can’t assist you will server errors, perhaps try a different webhost.Best regards,
MikeHey woogie07,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:@media only screen and (max-width: 479px) { .responsive #top #wrap_all #header .social_bookmarks, .responsive #top #wrap_all #main .av-logo-container .social_bookmarks { display: block; } }
Best regards,
MikeHey Mark,
The class avia-img-lazy-loading means it is lazy loaded, it also has the class lazyloaded from your wprocket plugin which is also trying to lazy load it.
When I test the image is not added to the DOM until the section is in view.Best regards,
MikeHi,
means in the case of the And combination, if one of the categories contains no posts, nothing is displayed. – which would be my personal preference.
This is how it is working for me when I check and using the filter:
add_filter('avf_masonry_query_no_entries_fallback', function($fallback) { return false; }, 10, 1);
this was the intention of the fix.
Best regards,
MikeHi,
Thank you for the link to your site, on the page that you have linked to the widths of the text in the cells now look good, so I guess the cell padding tip above helped.
I see that you have two cells hidden on mobile, both are image backgrounds, if you want them to show you can change this:
you have one column with a background image that has no content and no min height so it will not show:
please add a min-height for it to show:
When I check the slider text is white on desktop & mobile, I check with Windows in Chrome, Firefox, & Edge Dev Tools and Android phone. If you see black text on your phone try clearing your browser cache following these steps for Safari and note step 4 where you will Clear the History.
Those are the only issues that I see, please check.Best regards,
MikeApril 7, 2024 at 6:15 pm in reply to: Masonry gallery – image caption mouse over with arrow #1439420Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Glad to hear that you have this sorted out, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Try this function instead:add_filter( 'avf_wc_before_shop_loop_item_title_img_size', 'avf_wc_before_shop_loop_item_title_img_size_mod', 10, 1 ); function avf_wc_before_shop_loop_item_title_img_size_mod( $thumbnail_size ) { return 'fullsize'; }
Best regards,
MikeHi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHi,
Thank you for the link to your site and your patience, for your first slide with the button, it has a link so adding the button creates a nesting link, which typically wil cause issues, but it looks like this css will help:#main .aviaccordion-excerpt p > a { text-decoration: none; } #main .main_color a.my-accordion-button { text-decoration: none; background: blue; padding: 10px; border-radius: 2px; color: #FFF; position: relative; top: 135px; } #main .aviaccordion-slide-link .aviaccordion-title { top: -50px; position: relative; } #main .aviaccordion-slide-link { text-decoration: none; }
Best regards,
MikeApril 7, 2024 at 3:21 pm in reply to: Structured integration of various Enfold pages into one site #1439400Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeApril 7, 2024 at 3:16 pm in reply to: Masonry gallery – image caption mouse over with arrow #1439399April 7, 2024 at 2:48 pm in reply to: Masonry gallery – image caption mouse over with arrow #1439395April 7, 2024 at 2:43 pm in reply to: Structured integration of various Enfold pages into one site #1439394Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeHey ballindigital,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top .avia_cart_buttons { opacity: 1; } #top div.avia_cart_buttons a.button.product_type_simple.add_to_cart_button.ajax_add_to_cart:hover, #top div.avia_cart_buttons a.button.show_details_button:hover { color: black !important; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHey bemodesign,
Thanks for the link to your site, the plugin support for lightboxes and sliders is a Pro Feature
It looks like it costs $78
There is something similar called Magnificent.js, but the way it (and your Zoooom plugin) works is by showing two images, one small that you see on the screen and one very large that you only see a little of on hover, so you will need to manually create the element, you can’t use theme elements with it. So if you like the Zoooom plugin, paying for the Pro version would save you a lot of work.Best regards,
MikeApril 7, 2024 at 1:29 pm in reply to: Blog Einträge Länge unlimitiert / einsatz von php Einstellungen #1439384Hi,
Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold.Best regards,
MikeApril 7, 2024 at 1:27 pm in reply to: Masonry gallery – image caption mouse over with arrow #1439383Hi,
Do you mean this example:
it is a link on a image, it is not the same as a masonry gallery, our masonry gallery doesn’t have this. If you see a masonry gallery that has it and is not a external link please point to it.
Otherwise, link to your page and make the captain show on hover and perhaps we can get the arrow to show another way.Best regards,
MikeApril 6, 2024 at 9:33 pm in reply to: Masonry gallery – image caption mouse over with arrow #1439365Hey woogie07,
The arrow is typically for external links, see the setting at: Enfold Theme Options ▸ Advanced Styling ▸ Linked Image Overlay on my demo the arrow doesn’t show on the masonry gallery images on hover, but I’m not using external links. If this doesn’t help link to your page and make the captain show on hover and perhaps we can get the arrow to show another way.Best regards,
Mike -
AuthorPosts