Forum Replies Created
-
AuthorPosts
-
April 6, 2024 at 6:53 pm in reply to: Small bug: Left Arrow key don’t work in “TXT” mode (Rank Math) #1439342
Hi,
Ok, we will close this then.
Thanks for helping Guenni007, but since the plugin author is working on this, it is probably better for the solution to be applied to the plugin.Best regards,
MikeHey woogie07,
It is the padding for the portfolio grid, try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#top .avia-fullwidth-portfolio .sort_width_container { padding: 0; }
Best regards,
MikeApril 6, 2024 at 6:31 pm in reply to: Blog Einträge Länge unlimitiert / einsatz von php Einstellungen #1439336Hey carmen,
Change this:@media screen and (min-width: 1800px) { .mobile-nav { display: none; } }
to this:
@media screen and (max-width: 1800px) { .mobile-nav { display: none; } }
Best regards,
MikeHey menainfosec,
Thanks for the link to your site when I look at your /blog/ page I see a blog element with a pagination at the bottom, this matches your links above, but this is from a plugin and not the theme, so you will need to look in the plugin options to find where to disable the pagination.
If you can’t find the setting you can hide it with this css:.wpspw_pagination { display: none; }
There is not a way to “delete” these pagination pages because they are showed by the WordPress query, you could try using a redirect plugin and and redirect any page the includes /page/* to a different page that you choose
Best regards,
MikeApril 6, 2024 at 5:10 pm in reply to: Blog Einträge Länge unlimitiert / einsatz von php Einstellungen #1439327Hey Dominic,
The function that you have linked to is to be added to the child theme functions.php, I activated your child theme and added it for you, please check.Best regards,
MikeApril 6, 2024 at 4:50 pm in reply to: Addind Advanced Layout Builder to custom taxonomy description #1439326Hey kaiserlino,
There might be a way to do this, can you give a specific example such as a link to a taxonomy detail detail page and what ALB elements you would like to add to it.
We may be able to inject the ALB elements into the page. Would you be doing this many times and would you need to change this often once it was done?Best regards,
MikeHey cuccarini,
Thank you for the link to your site and your screenshot, you are using the pricing table on your site, try using the tabular data instead.
I created a test page with the tabular data and I made the table background color transparent so the color section Background Gradient would show instead of filling the empty cells with a red background color. This is how I filled the table:
I then added the custom class club-table
Then I used this css:.main_color table.club-table { border-collapse: separate; border-spacing: 10px; background: transparent; font-size: 18px; font-weight: bold; color: #fff; } .main_color table.club-table td, .main_color table.club-table th { border: 2px solid #fff; padding: 5px; background: transparent; font-size: 18px; font-weight: bold; color: #fff; height: 120px; vertical-align: middle; text-align: center; } .main_color table.club-table tr { border: 2px solid #fff; background: transparent; } tr:first-child th, tr:first-child td, tr th:first-child, tr td:first-child { border: 2px solid #fff; } table.club-table > tbody > tr:nth-child(2) > td:nth-child(1), table.club-table > tbody > tr:nth-child(3) > td:nth-child(1) { background-color: #1e90ff; } table.club-table > tbody > tr:nth-child(3) > td:nth-child(2) { background-color: #808080; } table.club-table > tbody > tr:nth-child(2) > td:nth-child(3) { background-color: #808080; } table.club-table > tbody > tr:nth-child(3) > td:nth-child(3) { background-color: #ee711f; } table.club-table > tbody > tr:nth-child(3) > td:nth-child(5) { background-color: #29a715; }
This is the result:
Please give this a try.Best regards,
MikeHi,
I believe that your question is that you are trying to use a grid row element with four cells and only want to have the background colors show as a bar:
you have set the min height to 15px:
but it shows as 60px high:
you need to go to each cell and set the Cell Padding to zero:
then it will show as 15px:
Best regards,
MikeHey BoXstA,
I’m not able to test your code on my test site because it doesn’t include the popup code, nonetheless if this works with a text link I imagine that you could use some css to style it into a button. PLease like to your test page so we can see, or if you need to use a button element, link to your test page with the working text link and the button below it that you want to use and include a admin login in the Private Content area so we can examine closerBest regards,
MikeHi,
Perhaps a plugin like Html5 Audio Player would be a good choice because it uses a shortcode that allows you to add the audio file URL, so it could be from an external source or a directory on your site that you upload to via FTP and bypass the WordPress media library completely:
Best regards,
MikeApril 6, 2024 at 1:26 pm in reply to: custom fonts in different language sometimes not displayed #1439316Hi,
Thank you for your patience, this seems strange and I have not seen any issues like this. Try adding this code to the end of your child theme functions.php file in Appearance ▸ Editor:function custom_avf_post_css_create_file( $create ) { return false; } add_filter( 'avf_post_css_create_file', 'custom_avf_post_css_create_file', 10, 1 );
Then enable Enfold Theme Options ▸ Performance ▸ Delete old CSS and JS files and change your Performance setting to Enfold Theme Options ▸ Performance ▸ JS & CSS file merging and compression ▸ Use minified theme files without merging
and clear any cache plugin and see if it happens again in the future, if it does don’t fix with the steps above but include a admin login in the Private Content area so we can examine.
We will leave this open to see it is happens again.Best regards,
MikeHi,
@TakiwaSoulArt the issue is most IOS devices do not display this correctly, this was a known issue with IOS for a few years, they have only recently fixed this for the newest devices but many people still use the older devices. I recommend using it as is.
Shall we close this thread then?Best regards,
MikeApril 6, 2024 at 12:52 pm in reply to: Small bug: Left Arrow key don’t work in “TXT” mode (Rank Math) #1439312Hey Peter,
Thank you for reporting that this is a known RM bug, in this case the best solution is to wait for their update. Since there is nothing for us to do here I imagine we should close this thread then?Best regards,
MikeHey goldengate415,
Thank you for your patience, using the add_theme_support(‘appearance-tools’); adds option for the Block Editor, the same is for the other improvements, these will not add anything to the ALB builder. The WordPress official documentation doesn’t explain any further about the Block Editor changes, but you can play around with it to find the improved Appearance Tools if you are curious.Best regards,
MikeHey marco593,
Thank you for your patience, the following javascript will add the chart title to the center of the Doughnut Chart,
If you are not using a child theme you could use the WP Code plugin then add a new snippet, in the top right corner use the PHP snippet as the code type:
then add this code and save.function doughnut_chart_with_title_in_center() { ?> <script> document.addEventListener('DOMContentLoaded', function() { function waitForChartJs() { if (typeof Chart === 'undefined') { setTimeout(waitForChartJs, 50); } else { registerCenterTitlePlugin(); } } function registerCenterTitlePlugin() { Chart.register({ id: 'centerTitle', beforeInit: function(chart) { // Dynamically hide the title and legend const options = chart.options; if (options.plugins) { if (!options.plugins.title) { options.plugins.title = {}; } options.plugins.title.display = false; // Hide title if (!options.plugins.legend) { options.plugins.legend = {}; } options.plugins.legend.display = false; // Hide legend } }, afterDraw: function(chart) { if (chart.config.type === 'doughnut') { const ctx = chart.ctx; const width = chart.width; const height = chart.height; const fontSize = (height / 114).toFixed(2); ctx.font = fontSize + "em sans-serif"; ctx.textBaseline = "middle"; ctx.textAlign = "center"; // Use existing title if set, otherwise use a default text const text = chart.options.plugins.title.text || 'Your Title Here'; const textX = width / 2; const textY = height / 2; ctx.fillText(text, textX, textY); } } }); } waitForChartJs(); }); </script> <?php } add_action( 'wp_footer', 'doughnut_chart_with_title_in_center', 99 );
Best regards,
MikeHey Stefan,
I believe that you are referring to this button:
It seems to look correct to me, the orange arrow expands the button options and they also show in the center of the mobile screen.
Perhaps a screenshot of what you see would help.Best regards,
MikeHey Yaphoon,
You could use a button element with the “Dark Transparent” option and disable the button border, then only the button text will show.
You can also use the advanced options in the button element to set the hove color.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,
MikeHey androklis,
Try creating a second menu that has the full menu item url back to the homepage and use that menu on the other pages and use the menu with just the hash tags on the homepage.
Then use this filter in your child theme functions.php to display the different menus:add_filter( 'wp_nav_menu_args', 'home_nav_menu_args' ); function home_nav_menu_args( $args = '' ) { if($args['theme_location'] === 'avia') { if( is_page( 627 ) ) { $args['menu'] = '25'; } return $args; } } add_filter( 'wp_nav_menu_args', 'other_nav_menu_args' ); function other_nav_menu_args( $args = '' ) { if($args['theme_location'] === 'avia') { if( is_page( 3 ) ) { $args['menu'] = '24'; } return $args; } }
Please ensure to copy the code from the forum and not an email notification so the symbols are not converted.
Best regards,
MikeHi,
I tested your page with this script and it looks like the click is on the av-horizontal-gallery-next button, try disabling the Gallery Image Rotation.jQuery(document).on("click", "body,html", function(event) { console.log("Clicked Element:", event.target); console.log("Element Classes:", event.target.className); console.log("Element ID:", event.target.id); console.log("Element Tag Name:", event.target.tagName); console.log("Parent Elements:", getParentElements(event.target)); }); function getParentElements(element) { var parents = []; var currentElement = element.parentNode; while (currentElement !== null) { parents.push(currentElement); currentElement = currentElement.parentNode; } return parents; }
Best regards,
MikeHi,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:.html_elegant-blog #top .post-entry .blog-categories { display: inline; margin-left: 10px; } .html_elegant-blog #top .slide-content .slide-meta { display: inline; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHey schweg33,
Try this CSS in your Enfold Theme Options ▸ General Styling ▸ Quick CSS field:#main .avia-section { z-index: 2; position: relative; }
After applying the css, please clear your browser cache and check.
Best regards,
MikeHi,
When I checked it was collapsed, but it’s there and there is no image added:
So try adding an images and I imagine that they will show on the frontend.
If you don’t see in with your login try ensuring that it is enabledin the WordPress Block Editor options:
or try using the login you posted for us.Best regards,
MikeHi,
Try opening the slider, then open your slide, then go to the Advanced tab and look for the Heading Tag option.Best regards,
MikeHi,
As I understand you are using cloudflare with Google Recaptcha v2 and when you use either the Enfold contact form or wpforms sometimes the email come in Chinese.
Is this correct? I don’t think that you are using a multi language site nor using Chinese, and it looks like you have tried disabling everything except the cloudflare.
Your pastebin code was removed so we can’t see it. Try disabling the cloudflare.
Also try using WP Mail SMTP so your mail is sent though your webhost SMTP mail server instead of the standard PHP mail that WordPress uses. You will want to use the “Other SMTP” option in the plugin and then get your SMTP server info from your webhost, this video should help you set it up
I would recommend using SMTP for your site email anyways, so if this doesn’t help with the Chinese issue, it will help with your overall WordPress mail, so it is worth the extra steps.Best regards,
MikeHey kuba9991,
I see that you have this error in the browser console:
Uncaught SyntaxError: Unexpected token '<'
try removing the code comments:
<!-- GetResponse Analytics --> <!-- End GetResponse Analytics -->
If this doesn’t help please include an admin login in the Private Content area so we can be of more assistance.Best regards,
Mike -
AuthorPosts