Forum Replies Created
-
AuthorPosts
-
Hi,
Sorry I was looking at the post titles,
Try this css:#footer.footer_color strong.widgettitle { color: #000; }Best regards,
MikeMay 7, 2023 at 11:05 pm in reply to: I have re-imported Twitter posts via Twitter publish and they are too long #1406687Hi,
The element is an iframe so you need to use the provided snippet from the publish twitter page, please include an admin login in the Private Content area so we can check your code snippet.Best regards,
MikeHi,
I tested Ismael code above and it removed creativeWork schema for entries, if you want to change it to something more specific like PodcastSeries then use this code:function avf_markup_helper_attributes_modified($attributes, $args) { global $post; if ( $args['context'] == 'entry' ) { if ( is_object( $post ) && 'post' !== $post->post_type ) { $attributes['itemscope'] = 'itemscope'; $attributes['itemtype'] = 'https://schema.org/PodcastSeries'; } } return $attributes; } add_filter('avf_markup_helper_attributes', 'avf_markup_helper_attributes_modified', 10, 2);But sense you are using Rankmath for your schema you would probably be better off disabling the Automated Schema in the theme option Enfold Theme Options ▸ SEO Support, please note the text next to the option:
The theme adds generic HTML schema markup to your template builder elements to provide additional context for search engines. If you want to add your own specific markup via plugins or custom HTML code, you can deactivate this setting
Best regards,
MikeHi,
Ok, I didn’t know about the iOS version locks, I mostly use Windows and only bought a secondhand Mac to test with it, it helps some.
I will close this ask you have asked, thank you for all of your help :)Best regards,
MikeHi,
Ok, I didn’t know that caching was an issue with LearnDash, perhaps another option would be to use the preloader at Enfold Theme Options ▸ Theme Options ▸ Page Preloading.Best regards,
MikeHi,
Try this css to hide the last cell below 1024px:@media only screen and (max-width: 1024px) { #top.page-id-12438 .pricing-table li:nth-child(8) { display: none; } }Best regards,
MikeMay 7, 2023 at 7:55 pm in reply to: The Events Calendar Events Countdown element block not working #1406671Hi,
Please also enable WP Debug on the staging site.
To turn on WP_DEBUG, find the following line of code to your wp-config.php file:define( 'WP_DEBUG', false );Then, replace “false” with “true” and save the file.
Also enable debug logging, by adding the following line of code to your wp-config.php file below the above code:define('WP_DEBUG_LOG', true);Also include FTP access so we can see the debug.log error log, thank you.
Best regards,
MikeMay 7, 2023 at 7:32 pm in reply to: I have re-imported Twitter posts via Twitter publish and they are too long #1406664Hey Diana,
Thank you for the link to your site and the screenshots, I believe there has been a misunderstanding about the grid row responsive display settings, the Grid Row > Advanced > set the mobile toggle point to tablet (>989px) doesn’t influence the setting Cell > Advanced > Responsive specified “hide on mobile devices” this is for <767px only.
From your screenshots it looks like you are using an iPad and I assume the screen resolution is 1024px x 1366px so I disabled the “hide on mobile devices” for these 5 sections and added this css to your Quick CSS:@media only screen and (max-width: 989px) { .responsive #top #wrap_all #design-engineering.av-break-at-tablet .flex_cell.av_two_fifth, .responsive #top #wrap_all #visualisierung.av-break-at-tablet .flex_cell.av_two_fifth, .responsive #top #wrap_all #modelling.av-break-at-tablet .flex_cell.av_two_fifth, .responsive #top #wrap_all #corporate-design.av-break-at-tablet .flex_cell.av_two_fifth, .responsive #top #wrap_all #personalagentur.av-break-at-tablet .flex_cell.av_two_fifth { display: none; } } @media only screen and (min-width: 990px) and (max-width: 1440px) { .responsive #top #wrap_all #design-engineering.av-break-at-tablet .flex_cell.av_two_fifth, .responsive #top #wrap_all #visualisierung.av-break-at-tablet .flex_cell.av_two_fifth, .responsive #top #wrap_all #modelling.av-break-at-tablet .flex_cell.av_two_fifth, .responsive #top #wrap_all #corporate-design.av-break-at-tablet .flex_cell.av_two_fifth, .responsive #top #wrap_all #personalagentur.av-break-at-tablet .flex_cell.av_two_fifth { background-position-x: -13vw } }This gives you a single column and hide the image for mobile and smaller tablet in portrait mode and two columns above 990px for larger tablets and desktop.
In my test background-position-x: -13vw seemed good for moving the image over to the left, but feel free to adjust to suit.Best regards,
MikeMay 7, 2023 at 3:19 pm in reply to: I have re-imported Twitter posts via Twitter publish and they are too long #1406644Hi,
I recommend adding the specific page IDs to the css above since this is not designed for every page, the page that you have linked to is very long so you will want to allow scrolling on.
For example:@media only screen and (max-width: 767px) { body#top.page-id-12020 { height: 100vh; } #socket > .container { padding-left: 0; padding-right: 0; } #top #my_section { height: calc(100vh - 120px); } }Best regards,
MikeHi,
unfortunately, that didn’t work, please see the screenshot in the Private Content area.
Try using the Temporary Login Without Password plugin:- Install and activate ” Temporary Login Without Password “.
- Go to ” Users > Temporary Logins ” on the left-side menu.
- Click ” Create New “.
- Add the email address for the account ( you can use (Email address hidden if logged out) ), as well as the ” Role ” making that the highest possible and the expiry about four days
( to be sure that we have enough time to debug ). - Click ” Submit “.
- You’ll now have a temporary account. Please provide us here in the private section the URL, so we can login and help you out.
When your issue is fixed, you can always remove the plugin!
Best regards,
MikeMay 7, 2023 at 2:26 pm in reply to: The Events Calendar Events Countdown element block not working #1406641Hi,
Thanks for your patience, I have asked for help from the team to assist you.Best regards,
MikeHi,
Glad this helped, it was hard because it is using percentages that change the value with screen sizes and in its different states, but a hard px value seems to correct.
Unless there is anything else we can assist with on this issue, shall we close this then?Best regards,
MikeHi,
If you want to create a shipping option you will need to use a plugin, if you only want to show that a specific product has a shipping method for customer info try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:add_action( 'woocommerce_single_product_summary', 'product_attribute_dimensions', 25 ); function product_attribute_dimensions(){ global $product; $taxonomies = array('express'); foreach($taxonomies as $taxonomy ){ $value = $product->get_attribute( $taxonomy ); if ( $value ) { $attribute_label_name = wc_attribute_label( $taxonomy ); echo '<p>Express Shipping:' . $value . '</p>'; } } }the in your product attributes add a custom attribute named express with the value you wish 24/48 H

Then on the product page the attribute will show under the description and in the Additional information tab:

Best regards,
MikeMay 6, 2023 at 11:45 pm in reply to: website.com/?cat=-1 –> Any idea, why this query string is there? #1406618Hi,
Thanks for the feedback, your second site is loading for me, but I don’t know why /?cat=-1 works on your site, I was unable to reproduce this on my site by changing my permalinks to match yours above.Best regards,
MikeHey guychalk,
Thank you for the link to your site, I css that the css for these menu items, especially to show the word “search” is loading slowly.
Typically enabling Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression or using a caching plugin would help with this, do you plan on using a caching plugin when you are done building your site? If so this should sort out then.Best regards,
MikeHey mexi33330,
Please ensure that you are using Enfold v5.6 and a minimum of PHP v7.4, if this is true then try disabling your plugins. If that resolves the issue, reactivate each one individually until you find the cause.
If this doesn’t help please include an admin login in the Private Content area so we can be of more assistance.Best regards,
MikeHey sky19er,
Please remove your custom css:#top .aviaccordion-preview-title { vertical-align: top !important; }and use this css instead:
#top #main .aviaccordion-preview-title { vertical-align: top; padding-top: 20px; }After applying the css, please clear your browser cache and check.
Best regards,
MikeHey enfold,
Please include an admin login in the Private Content area so we can be of more assistance.Best regards,
MikeHey Munford,
Thanks for the link to your site, the current menu color of #382410 seems to be showing correctly when I check, if you want it to match the hover color #3f7cb5 you can make this change in the Enfold Theme Options ▸ Advanced Styling for menu links, or try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top #header .av-main-nav > li.current-menu-item > a .avia-menu-text, #top #header .av-main-nav > li.current-menu-item > a .avia-menu-subtext { color: #3f7cb5; }Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
After applying the css, please clear your browser cache and check.Best regards,
MikeHey paulasworld,
I see your site is using Enfold v4.7.5 with WordPress v6.11 and PHP v8, this version of the theme doesn’t support these so you will need to update.
To update your version of Enfold you will need to download the latest installable WP version from your Theme Forest account and upload it to your WordPress ▸ Appearance ▸ Themes ▸ Add Themes ▸ Add New

after you choose the zip file and click install, you will see a This theme is already installed message because you are updating, you can continue

then you will see the Theme updated successfully message.
Best regards,
MikeMay 6, 2023 at 9:39 pm in reply to: Access to Support Question Have purchase codes for my company but I don't personally #1406607Hi,
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,
MikeMay 6, 2023 at 9:38 pm in reply to: Content under Masonry Gallery not loading unless page is refreshed #1406606Hey AndrewRice71,
I checked your page on Windows in Chrome, Firefox, & Edge and with Mac in Safari, Chrome, Firefox and the Masonry Gallery and the content below it showed in all cases. I also tested reloading the page to see if any extra content became visible, but I didn’t see any. Please see the screenshot in the Private Content area.Best regards,
Mike -
AuthorPosts








