Forum Replies Created
-
AuthorPosts
-
January 30, 2021 at 12:17 pm in reply to: Image Link Settings – Automaticly file:///x:/xxx/.. to domain.tld/xxx/ #1276500
Hi,
Glad we were able to help, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHi,
Sorry for the late reply, you can make templates of your page to reuse on other pages:
But please note that if you make a template that contains an html error, like the one you have with the strong tags above, the template will also reproduce the error.
So while you are trying to correct your errors I recommend rebuilding your pages from scratch.Best regards,
MikeHi,
Sorry for the very late reply, I believe that you can add a diagonal border between grid rows with this solution.
The border that this creates is an “arrow”, but give this a try and if it works for your design we can try to change it to a diagonal border, if you wish.Best regards,
MikeHi,
Glad to hear, we will close this now. Thank you for using Enfold.For your information, you can take a look at Enfold documentation here
For any other questions or issues, feel free to start new threads in the Enfold forum and we will gladly try to help you :)Best regards,
MikeHi,
Yes, correct, this is what you did.
For the font, please include an admin login in the Private Content area so we can take a look.Best regards,
MikeJanuary 29, 2021 at 12:34 pm in reply to: Image Link Settings – Automaticly file:///x:/xxx/.. to domain.tld/xxx/ #1276279Hi,
Thank you for the feedback, I found a function to allowfile:///
, I tested it on my localhost with a text link and it was showing on the front end.
I also found that you need five slashes at the front. The protocol is “file:///” … with three(not two)slashes. The next two slashes are the beginning of the UNC path.
Try adding this code to the end of your functions.php file in Appearance > Editor:function rh_allow_file_protocol( $protocols ) { $protocols[] = 'file'; return $protocols; } add_filter( 'kses_allowed_protocols', 'rh_allow_file_protocol' );
Best regards,
MikeHi,
For the font 404 errors, it looks like this code is added to your header:@font-face { font-family:helveticabold;src:;font-display: swap;}
are you using the theme version of helvetica or are you adding it in your css or functions.php?
As for the H6 & SEO, Google does recognize the change in the DOM to the tags, so this would work. Making the change manually would be best, but since it is on 500+ products, making the change with jQuery is what I would recommend.Best regards,
Mike*It looks like Guenni007 and I were posting the same code at the same time 😂, thanks to Guenni007 for this code posted a while back 👍
January 28, 2021 at 2:29 pm in reply to: Solution for Single Template views (Toolset types and blocks)? #1276054Hi,
Very good, we will leave this open to hear back from you when you get a chance to check this.Best regards and have a great day,
MikeHi,
Thank you for the feedback, that is nice of the plugin author to offer to make changes for your site. We are expecting to release the next update by the end of Jan, I would recommend testing this version and WP 5.6 with the Mailchimp features and the Html5 Audio Player PRO plugin and all of the other plugins deactivated on your testing clone to see if this continues.Best regards,
MikeHi,
I see, if you can make a staging copy please do, it would be better than testing on your live site.Best regards,
MikeHi,
Sorry for the very late reply, I would recommend trying the Portfolio Grid element, you would need to create a portfolio item for each image, the Portfolio Grid allows sorting and lightbox viewing of the image. You can also have the images link externally if you use the override link option in the portfolio items. The title that shows below the items can be hidden with css, if you wish.
I recently assisted with a similar thread were a plugin Portfolio Gallery was the solution because WordPress doesn’t assign categories or tags to media items to allowing sorting. I understand that you don’t want to use another plugin, but I thought I would point this out.Best regards,
MikeHi,
Your welcome, unless there is anything else we can help with on this issue, shall we close this then?Best regards,
MikeHi,
Thank you for the link, try adding this code to the end of your functions.php file in Appearance > Editor:function custom_h6_tabcontainer_script() { ?> <script> (function($) { $(document).ready(function(){ function replaceElementTag(targetSelector, newTagString) { $(targetSelector).each(function(){ var newElem = $(newTagString, {html: $(this).html()}); $.each(this.attributes, function() { newElem.attr(this.name, this.value); }); $(this).replaceWith(newElem); }); } replaceElementTag('#top.single-product .tabcontainer.sidebar_tab_left .tab_inner_content > h6', '<p></p>'); }); }(jQuery)); </script> <?php } add_action('wp_footer', 'custom_h6_tabcontainer_script');
This should only work if your single products have a tab container with a left sidebar and the inner container has an H6, this should be specific enough to not conflict with any other H6’s on your site, but please clear your browser cache and check.
Best regards,
MikeHi,
Sorry for the very late reply and thanks for the screenshot. To edit the links for your translation or to add more links that is not in the original text, you will need to edit the “translation” post manually. Please see this documentation.Best regards,
MikeHi,
Glad to hear this is helping for the new uploads, to correct the other ones you will need to re-upload the images, I recommend uploading them with a slightly different file name.Best regards,
MikeJanuary 27, 2021 at 12:21 pm in reply to: Image Link Settings – Automaticly file:///x:/xxx/.. to domain.tld/xxx/ #1275755Hi,
Thank you for the feedback and the login, I see that you are using the Blog element with pagination, I tested this situation with our beta version of our next update and the pagination links back to the first page. We expect the next update to be by the end of the month, so I recommend waiting until then, thank you for your patience.Best regards,
MikeJanuary 26, 2021 at 2:15 pm in reply to: How to make the images stay at their size/position when I zoom the browser? #1275485Hey DeMamp,
Thank you for the mockups, this looks like a background-position issue, try checking that the background image “background-position” is centered.
If your background image is too small for desktop then this would not help, you would need to try a larger background image for all screen sizes or display a different larger background image for desktop size via css media queries.Best regards,
MikeHey Mohamad,
We could change the H6 to “p” with jQuery, this would change the tag in the DOM (on page load), Google will recognize this but some SEO tools that only check the source code might not recognize this. If you want to change the H6 in the source code you will have to manually change the tags.
Please link to one of your product pages with the H6’s to change so I can examine the elements and write a script.Best regards,
MikeHi,
Not exactly, in my tests with the beta, by the time the text is in the filter theé
has already been removed, so using regex to replace theé
, or any non ASCII character won’t work, thus the searching for the word missing the characterprparation
in the filter above.
But the I am encouraged by the update notes, posted above, because the beta I’m testing with is not the final version.Best regards,
MikeHi,
Thank you, as I understand the blurry issue, this only occurs on the two posts you linked to above? I compared these to /best-restaurants-in-lahore/ and I’m not sure that I see the blurry, /backpacking-pakistan/ looks like it has an overlay so it looks darker than /best-restaurants-in-lahore/, but I would not say blurry.
/what-to-wear-in-pakistan/ does look grainy, but it’s a smaller image stretched to fit, which would be sorted out once the different images sizes are restored.Best regards,
MikeHi,
Very good, the dev team has also added two new filters in the next update:added: filter ‘avf_tab_section_link_hash’: filter hash value for ALB tab section (e.g. replace non ASCII with custom value instead of removing)
added: filter ‘avf_valid_href’: allows to replace invalid removed charactersThe filter above should continue to work, or you could use this filter with v4.8:
add_filter('avf_tab_section_link_hash','avf_tab_section_link_hash_mod'); function avf_tab_section_link_hash_mod($link){ if (strpos($link, 'prparation') !== false) { return 'preparation'; } else {return $link;} }
We believe the next update will be around the end of Jan.
Best regards,
MikeHi,
Thank you, I checked the /grocery-delivery/ page and a single product page /the-butcher-special/ and adjusted the css for ul & li in the excerpt, that would not normally show. The excerpt also wanted to show a “read-more” link that I didn’t think you wanted to show..avia-product-slider1 > .avia-content-slider-inner > .products .inner_product_header_cell ul li, .related.products > .products > .product .inner_product_header_cell ul li { width: 100% !important; margin: 0 0 0 17px !important; list-style: disc outside !important; } .avia-product-slider1 > .avia-content-slider-inner > .products .inner_product_header_cell > p, .related.products .inner_product_header_cell > p{ display: none !important; }
Please clear your browser cache and check.
Best regards,
MikeHi,
Sorry for the very late reply and thanks for the login, I see that your descriptions in include html and thethe_excerpt
strips html.
I believe this function works: Allow HTML Tags in WordPress Excerpts please try adding this to your child theme functions.phpBest regards,
MikeHey schwabino,
Sorry for the very late reply, I see this is a duplicate of this thread that is active, let’s continue there and close this one. 🙂👍Best regards,
MikeJanuary 24, 2021 at 11:58 pm in reply to: testimonials Arrows showing up strange on all pages #1275137Hey asapevictions,
Sorry for the very late reply and thanks for the link, this is due to this custom css in your Quick CSS or child theme stylesheet:#top .avia-slideshow-arrows a { font-size: 100px !important; }
Please remove this and clear your browser cache, and check again.
If you want the arrows larger please try this css instead:#top .avia-slideshow-arrows a:before { font-size: 100px !important; }
Then clear your browser cache and check.
Best regards,
MikeJanuary 24, 2021 at 11:33 pm in reply to: Image Link Settings – Automaticly file:///x:/xxx/.. to domain.tld/xxx/ #1275132Hi,
Sorry for the late reply, as I understand your situation you want to use a different prefix in the image Link Settings, the theme automatically adds the domain and changes unknown prefixes to HTTP.
While I’m not certain of your exact planned use offile:///x:/xxx/..
, or even a blanktest
in the image Link Settings, I imagine you are trying to usemobilepay://
ormagnet:
or something similar, either way I believe that I can help with a script like this://example only (function($) { $(".example").each(function() { var link = $(this).attr('href'); $(this).attr('href', 'mobilepay:' + link); }); })(jQuery);
But I will need a bit more info, please link to your page with an exact use and explain what you want the link to point to, and how often this will occur, such as on one page only, or in one section only in every post, etc. The goal is to identify an exact class used and the situation, such as which pages, posts, etc. You would not want this running wild on your site.
Best regards,
MikeHi,
Sorry for the very late reply, I see that you are still using v4.5.7, your login token is no longer active so I can’t check that you have created an Envato Token and are able to update the theme via the built-in updater, please try to update this way.
Otherwise, we can help you update via FTP, if you include FTP access in the Private Content area and update the login token and link to your copy of the theme that you download from Theme Forest, just upload to DropBox or similar.Best regards,
MikeHi,
Sorry for the very late reply and thanks for the login, it looks like the masonry element is set to “Perfect Automatic Masonry”, this option uses the cropped images for the images that are extra high or wide, thus the images that are cropped to 1k. Please try the “Flexible Masonry” as All images get the same width but are displayed with their original height and width ratio
I also note that your WordPress > Dashboard > Settings > Media > Media Settings > Image sizes > Large size is set to 9999px, which is ok to try to get the full size, but I believe that leaving the fields empty also allows for full size and doesn’t push the images though the cropping process which could change the quantity.Best regards,
MikeJanuary 24, 2021 at 8:24 pm in reply to: Solution for Single Template views (Toolset types and blocks)? #1275124Hi,
Sorry for the very late reply @ifranl, I don’t use Toolset myself but I recognize this issue and it seems to be related to the use of the_content() and get_the_content() and how Toolset & Enfold use them.
The issue identified through collaboration with Toolset:To allow users design their content with Toolset Views, The Enfold Theme would have to provide a single function that gets the content, passes it over the the_content filter, and returns it or prints it on screen.
Currently, all this things are happening directly inside the WordPress loop, not thru a function, which means that Enfold does not have a content “provider” as required by Toolset Views to detect and whitelist the source of content that a Content Template should replace.For v4.6 the filter avf_the_content was added:
The filter itself would work, I am able to for example pass the_content() to it, which will allow people to design it in Content Templates.
So yes, people could work with this by adding a custom code like the below to the theme when working with Toolset:function example_callback() { return the_content(); } add_filter( 'avf_the_content', 'example_callback' );
Apparently Toolset at one time had posted a “child theme” for their Enfold users on their support fourm with the correct filter ready to use. I didn’t find it, but I’m not a member, please check yourself.
Best regards,
Mike -
AuthorPosts