Forum Replies Created
-
AuthorPosts
-
Hey kjwaggz,
Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#top.home .pricing-table-wrap:first-child .avia-heading-row, #top.home .pricing-table-wrap:first-child .avia-pricing-row, #top.home .pricing-table-wrap:first-child .avia-pricing-row span.currency-symbol { background-color: rgb(45, 45, 45) !important; border-color: rgb(45, 45, 45) !important; color: rgb(225, 30, 43) !important; opacity: 1 !important; } #top.home .pricing-table.avia-highlight-col .avia-heading-row, #top.home .pricing-table.avia-highlight-col .avia-pricing-row,span.pricing-extra, #top.home .pricing-table.avia-highlight-col .avia-pricing-row span.currency-symbol, #top.home .pricing-table.avia-highlight-col .avia-pricing-row small { background-color: rgb(243, 243, 243) !important; border-color: rgb(243, 243, 243) !important; color: rgb(71, 71, 71) !important; opacity: 1 !important; } #top.home .pricing-table-wrap:nth-child(3) .avia-heading-row, #top.home .pricing-table-wrap:nth-child(3) .avia-pricing-row, #top.home .pricing-table-wrap:nth-child(3) .avia-pricing-row span.currency-symbol { background-color: rgb(45, 45, 45) !important; border-color: rgb(45, 45, 45) !important; color: rgb(0, 158, 240) !important; opacity: 1 !important; }
Best regards,
MikeHi,
Thank you for the login, I took another look and found the for your anchors you were using this format:<a name="Wallet"></a>
please use this format instead:
<a id="wallet"></a>
or you can use the “For Developers: Section ID” field in your color sections. I made a couple of examples for you on your page.
Best regards,
MikeHi,
I found that disabling WP Bakery, Speedboost, and using the Classic Editor resulted in no errors. The classic editor was enabled from the theme setting “Select Your Editor”. I was getting errors with the Block Editor and the Yoast plugin, which has many reports lately 1, 2, 3
But there is a chance that one or more of your plugins is giving an error with PHP v7.2, so it would be worth a try to use v7.0.
I recommend disabling your plugins, then reactivate each one individually until you find the cause.Best regards,
MikeHi,
Just digging though the source code :)
Unless there is anything else we can assist with on this issue, shall we close this then?Best regards,
MikeHi,
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 under Enfold sub forum and we will gladly try to help you :)Best regards,
MikeHi,
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 under Enfold sub forum and we will gladly try to help you :)Best regards,
MikeHi,
It is using a different template so the logic didn’t work as expected, but this css does work:#top.single-tribe_events #waarom,#top.single-tribe_events #contact,#top.single-tribe_events #av_section_3.footer_color { display: none !important; }
Best regards,
MikeJanuary 15, 2019 at 1:15 pm in reply to: Change font family only for one specific text blog #1054104Hi,
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 under Enfold sub forum and we will gladly try to help you :)Best regards,
MikeHi,
@FaM Sorry, I know you said you liked the “bug” but please consider using a accordion element if you want to toggle content.
I do not recommend rolling back the bug fix, but this was the code that was added to fix the bug.
The file is at: /enfold/config-templatebuilder/avia-shortcodes/tabs/tabs.php
lines 298 – 306:$tab_sc = ShortcodeHelper::shortcode2array( $content, 1 ); if( ! is_numeric( $initial ) || ( $initial < 1 ) ) { $initial = 1; } if( $initial > count( $tab_sc ) ) { $initial = count( $tab_sc ); }
be sure to save a copy of the file, should your modifications brake it.
Best regards,
MikeHi,
That is great news! unless there is anything else we can help with on this issue, shall we close this then?Best regards,
MikeJanuary 15, 2019 at 7:15 am in reply to: Change font family only for one specific text blog #1053975Hi,
Sorry for the late reply, I investigated this further and I found that Enfold doesn’t load all of the Google fonts automatically, it specify loads the fonts that are assigned in the theme options for performance. So if you have assigned “Yellowtail” to any element in the theme options it will be loaded and available for your custom css, otherwise it is not loaded for your css.
But any font that you upload in the Custom Font Manager is loaded and available.I tested this by trying to assign Yellowtail to a heading with a css rule, but it didn’t show correctly. When I assigned Yellowtail to the menu in the advanced styling it showed correctly for the heading. Then when I deleted the advanced styling option for the menu and uploaded the font in the Custom Font Manager, the css rule for the heading showed correctly.
So if you want to change a specific element’s font, and it’s not one that you are already using in your theme options, please upload it to the Custom Font Manager and add a css rule.
I hope this helps.
Best regards,
MikeHi,
The function to add custom tab and toggle ids is:add_theme_support('avia_template_builder_custom_tab_toogle_id');
you can link to tabs with their hash such as:
Please read more about tabs here
Best regards,
MikeHi,
If I understand correctly, this is the css you want for the “reviewinstagram” section on mobile:@media only screen and (max-device-width: 767px) { #reviewinstagram .av-parallax-inner { background-image: url(https://www.bonjiglass.com/wp-content/uploads/2019/01/congruent_pentagon.png) !important; background-position: top center !important; } }
Best regards,
MikeHi,
To reverse the order of the bottle hotspot image for mobile, please try this css:@media only screen and (max-width: 767px) { #bottleview.entry-content-wrapper { display: flex !important; flex-wrap: wrap !important; } #bottleview .flex_cell.avia-builder-el-first { order: 2 !important; } #bottleview .flex_cell.avia-builder-el-last { order: 1 !important; } }
Best regards,
MikeHi,
When I look at your site the images no longer have the bottom border, please try clearing your browser cache.
As a side note, since you wanted to only have the border on your text links, I would have recommend writing your css like this, with the “p” paragraph in the rule. But there are many ways to do this, and it seems that you have it under control now./*underline links body*/ .entry-content p a { color: #000 !important; border-bottom: 5px solid #e06; } .entry-content p a:hover { color: #e06 !important; text-decoration: none !important; border-bottom: none !important; }
Best regards,
MikeHi,
Thank you for explaining these issues, I found that all of your pages get the 404 in the title, and if you try to edit them from the front end you are redirected to editing the 404 page.
I believe that when you got the error message there was a big error in the backend, I recommend trying to reinstall the site again from the div site.
What plugin did you use to correct the url’s?
I recommend using the duplicator plugin to migrate your site from the dev.Best regards,
MikeJanuary 15, 2019 at 4:00 am in reply to: Enfold 4.5 Theme Update "Update Failed: Download failed. A valid URL was not pro #1053941Hi,
@ChristineGerman that’s good news, thanks for sharing your solution.Best regards,
MikeHi,
Thanks for the login, I see your Enfold is up to date but your “WP Bakery” plugin is also loading in the ALB builder, I believe that this may be the issue, please try disabling your plugins. If that resolves the issue, reactivate each one individually until you find the cause.Best regards,
MikeHi,
To remove the bottom border from the images, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:.entry-content a img { border-bottom: none !important; }
Best regards,
MikeHi,
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 under Enfold sub forum and we will gladly try to help you :)Best regards,
MikeHi,
Ok, once you have published your site with the current Enfold version, please let us know if you are still seeing this so we can assist.Best regards,
MikeHi,
Thank you for the video, it makes much more sense now, the two editors are not suppose to show at the same time, this is a error and explains why your page is not updating.
Please ensure that your using at least Enfold v4.5.2 and your PHP version is at least v5.6,
If these are true, then perhaps a plugin is causing the error, please try disabling all of them to see if that helps.
If you are still seeing this, please include a admin login in the private content area so we can be of more assistance.Best regards,
MikeHey ACJJ619,
Any customizations you make should be stored in a child theme functions.php so it won’t be overwritten.
Without knowing what info you wish to display, I found this plugin that seems to offer a good selection: User Shortcodes
Another option is writing your own with this article:
How to Get Logged-in User’s Info in WordPress for Personalized Results
Here is the WordPress Codex for the function that has been updated with v4.5: Function Reference/wp get current userBest regards,
MikeHi,
Thank you, I updated your css. Please clear your browser cache and check.Best regards,
MikeHi,
Sorry, I can’t envision how to have the ALB & classic editor open in the same window at the same time, perhaps I could assist better if you make a screencast of what you are doing and the error.Best regards,
MikeJanuary 13, 2019 at 10:22 pm in reply to: Cannot find way to change logo area background color #1053423Hi,
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 under Enfold sub forum and we will gladly try to help you :)Best regards,
MikeHi,
To reduce the vertical space between the footer columns in mobile, Please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:#footer .widget_text { margin: 0px !important; } #footer h3.widgettitle { padding-top: 0px !important; margin-top: 0px !important; }
Best regards,
Mike -
AuthorPosts