Forum Replies Created
-
AuthorPosts
-
Hey limedrop,
How do you want to change the mouse over effect? Remove it, or change the color?Best regards,
MikeHey ConnyQ,
To disable the topbar use the theme setting option at Enfold Theme Options ▸ Header ▸ Extra Elements ▸ Phone Number or small info text and disable.
To have the menu above the LayerSlider link in the demo use the transparent header at Enfold Theme Options ▸ Header ▸ Transparency Options
If you have other questions we may need to see your site with a admin login to assist with your specific settings.Best regards,
MikeHey Munford,
Using a header.php in your child theme will often cause errors when you update as the new updated header.php will not be used.
Please don’t add a header.php or footer.php to your child theme as this is the top reason for errors after updating, if you have a specific piece of code that you need to add to your header it is better to add it in your child theme functions.php, but I don’t see this in the code above.Best regards,
MikeHi,
I find no errors or “crash” on your site, please explain further.
My test site has no issues with PHP v8.1Best regards,
MikeHi,
Please link to your page, since this thread is from 2015 it may be better to open your own thread with a link to your page so we can assist.Best regards,
MikeHey Antonio,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.av_header_transparency.header_color .main_menu .dgwt-wcas-ico-magnifier-handler { fill: #fff; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHey Hank,
You will need to use the “text” tab in the text element and add html to create two columns, please see this example solutionBest regards,
MikeHey AuroraArcus,
You have a empty image element above each image element, so that is two image elements in each columns, for example this is the empty one:
and this is the one below it with the image:
so please delete the empty ones. You can find them by moving your pointer just above the visible image.Best regards,
MikeHi,
It looks like the login that you posted for us is not admin, so we can not see your theme settings, functions.php, ect.
Nonetheless, when I check your grid row the 1/5 cell that the button is in, it has a cell column link that points to a file that doesn’t exist, this cell column link has priory over the button file link.
You do not need two links, so remove the cell column link and only use the button link, or correct the cell column link and remove the button link, or make both the same.Best regards,
MikeHey Akhurst,
To increse the font sizes for the price, sku, & categories, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top.single-product .price span { font-size: 30px; } #top.single-product .main_color .product_meta span { font-size: 30px; }
adjust the font size to suit.
To remove the related products, try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function remove_woo_relate_products(){ remove_action( 'woocommerce_after_single_product_summary', 'avia_woocommerce_output_related_products', 20); } add_action('init', 'remove_woo_relate_products', 10);
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
Best regards,
MikeHey maxh_muc,
Try this css in your quick css:.single-event .tab_titles { display: none; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
Glad Guenni007 could help, thank you Guenni007, 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 Ismael could 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 Ismael could 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,
MikeApril 11, 2025 at 10:29 pm in reply to: Feature Request – Customize the “ALL” label in Masonry taxonomy filter #1481210Hi,
Glad Ismael could help, please follow the Github for feature request that you posted for possible updates about this feature request.
As this is not the correct place for feature requests and you find that this solution is working, we would like to close this thread. OK?Best regards,
MikeHi,
If you are asking about “Question 2” changing the link from /?avia-element-paging=2 to /page-2 can not be done, as it causes a conflict with WordPress.
The Dev Team set it to /?avia-element-paging=2 to avoid this conflict.
Nonetheless, if you would like to request this pagination change, the Dev Team has opened a new Github Feature Request for users to place requests and follow them as the Dev Team reviews them.Best regards,
MikeHi,
You want a 1500x1500px image under the category title?
1500px height would basically be full screen height, right?
Do you want the image under the title or the title to be overlayed on the image?
This will not be so easy.Best regards,
MikeApril 10, 2025 at 10:54 pm in reply to: This contact form is deactivated because you refused to accept Google reCaptcha #1481161Hey digitalrefresh,
It looks like your Google reCaptcha setting in the cookies is set to make all items disabled until manually checked:
so if you manually check this and then reload your contact form button will show:
Check your Default Cookie Behaviour settings, I think you are using “Essential cookies are accepted on first page load, user must opt in” try changing to “All cookies and services are accepted on first page load, user can opt out”
and also check “Advanced Options” and use “Auto reload on “Accept Settings …” only” so the page is reloaded.
Best regards,
MikeHi,
I added this css:.category .title_container h1 a { font-size: 300%!important; line-height: 55px; font-family: "sacramento", cursive; font-weight: 400; }
and this code to your to the end of your child theme functions.php file in Appearance ▸ Editor:
function custom_script() { ?> <script> (function($){ $('#top.category .title_container h1.main-title.entry-title a').contents().filter(function() { return this.nodeType == 3 }).each(function(){ this.textContent = this.textContent.replace('Archive for category:',''); this.textContent = this.textContent.replace('Tag Archive for:',''); this.textContent = this.textContent.replace('Archive for:',''); }); })(jQuery); </script> <?php } add_action( 'wp_footer', 'custom_script', 99 );
the result now:
Please clear your browser cache and check.Best regards,
MikeHi,
The text below it is H2 “Poetry 5 Submission Title” are you sure that you want two H2 on the category page and no H1? It may affect your SEO.Best regards,
MikeHi,
I disabled your Enfold Theme Options ▸ Header ▸ Header Layout ▸ Header Title and Breadcrumbs ▸ Display only title and added this to your code to the end of your child theme functions.php file in Appearance ▸ Editor:add_filter('avf_header_setting_filter', 'avf_header_setting_filter_mod', 50, 1); function avf_header_setting_filter_mod($header_settings) { if (is_tax() || is_archive()) { $header_settings['header_title_bar'] = "title_bar"; } return $header_settings; }
to only show the title on your category pages.
and I added this css:.category .container_wrap_first { border: none; } .category .title_container { text-align: center; padding-top: 50px; background-color: #f2f0eb !important; } .category .title_container h1 a { font-weight: 600 !important; line-height: 1.3em; font-size: 30px; }
so compared to one of you posts:
your category title looks like this:
But note that they are both H1, I don’t see H2 like you asked.Best regards,
MikeHey Steve,
Youtube has removed these options and since it is in an iframe locale css will not work. Vimeo may have an option for this in their premium plan, but I’m not sure.
Try self-hosting your videos for better control.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,
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,
Ok, thanks for using Enfold.
To get a refund, please go to: Can I Get A Refund? in your Envato account.
We here in support are not connected to your account in Envato (theme forest) So you need to follow their steps.Best regards,
MikeApril 7, 2025 at 12:42 am in reply to: how to have on a specific page a different style ( boxed, stretched, framed) #1480899Hi,
I believe that you are correct, thank you for adding this solution and all of your great help!
Shall we leave this thread open for future questions?Best regards,
MikeApril 7, 2025 at 12:15 am in reply to: After adding Captcha V3, we get “Token to validate form already expired.” #1480897Hi,
Do you have this issue when Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression is disabled?Best regards,
Mike -
AuthorPosts