Forum Replies Created
-
AuthorPosts
-
Hi flylanddesigns,
I’m glad that Ismael could help you :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Stilecatalini,
The customization that you would like to have requires a significant amount of time to do the modifications as Ismael mentioned.
Please check the scope of our support: https://kriesi.at/support/register/#av_section_2Best regards,
NikkoJuly 11, 2023 at 2:16 am in reply to: Tabelle: Spalten auf kleinen Displays untereinander angezeigt #1413004Hi piaspilauer,
Thanks for giving us admin access, I have modified the page (link in private content).
I unchecked the hide in mobile options for the table and then in Advanced > Developer Settings > Custom CSS class field I put: two-columns and added this CSS code in Quick CSS:@media only screen and (max-width:767px) { #top #wrap_all #main .two-columns { display: grid; grid-template-columns: repeat(2, 1fr); } }
If you want to use this other tables then just edit the table and go to Advanced > Developer Settings > Custom CSS class field and put: two-columns
Please review your website.Best regards,
NikkoJuly 11, 2023 at 2:00 am in reply to: Remove items from default WooCommerce Dropdown filter #1413003Hi thinkjarvis,
Thanks for posting your code :)
Thanks as well for using Enfold and have a great day!Best regards,
NikkoHi Saka,
Thanks for giving us both admin and cpanel access.
I was able to upload the theme and fix the “The link you followed has expired” by modifying the post_max_size and upload_max_filesize in the Home Directory to 32M
And the critical error was fixed after memory_limit is set to 128M
Please review your website :)Best regards,
NikkoHi ballindigital,
Please try to check in the Code Block > Advanced > Responsive > Element Visibility and see if it’s hidden on mobile otherwise, please provide us with your login credentials by following these steps:
- Install and activate the “Temporary Login Without Password” plugin. You can find it here.
- Once activated, navigate to “Users > Temporary Logins” in the left-side menu.
- Click on “Create New” to generate a temporary login.
- Enter the email address for the account (you can use (Email address hidden if logged out) ) and select the highest possible role. Set the expiry date to around four days to ensure enough time for debugging.
- Click “Submit” to create the temporary account.
- In the private section, provide us with the URL that allows us to access the temporary login and assist you.
Please note that once your issue is resolved, you can remove the plugin. Alternatively, if you prefer not to use the plugin, you can manually create an admin user and share the login credentials in the “private data” field.
If you have any further questions or concerns, please let us know.
Best regards,
NikkoHi Anna_Tewes,
I checked the homepage of the link in private content but I don’t seem to see the issue on a mobile phone (tried to resize the browser on desktop but it’s not showing as well).
Is this already fixed? if not please try to check using other devices.Best regards,
NikkoHi tulin88,
Are you using a child theme? if yes, please add this PHP Snippet in your child theme’s functions.php, if you don’t have one, then you can use a plugin called WPCode – Insert Headers and Footers and insert it as a PHP Snippet:
add_action( 'ava_inside_main_menu', 'heading_above_news' ); function heading_above_news() { $page_id = 1828; $header = "TECHNICAL ASSISTANCE FOR TOWN TWINNING BETWEEN TÜRKİYE AND THE EU PHASE – II"; if ( is_page( $page_id ) ) { echo '<div class="news-header"><h3> ' . $header . '</h3></div>'; } }
Then go to Enfold > General Styling > Quick CSS and add this CSS code:
#top #header_main_alternate .main_menu { display: flex; flex-direction: column-reverse; } .news-header h3 { color: #0e4194; font-size: 18px; }
Hope it helps.
Best regards,
NikkoHi BenjaminSpeedtsberg,
I see, there’s no option to for the category pages to copy the same layout as the blog if it’s set to Use the advance layout editor to build your own blog layout (simply edit the page you have chosen in Enfold->Theme Options as a blog page), you can only use it if you create pages for it and redirect the category page towards those specific pages.
But you can change the layout atleast to Grid, but would require you to use a child theme: https://kriesi.at/documentation/enfold/child-theme/ (make sure to follow the instructions in the documentation page)
If you already have a child theme then please try to add this code in functions.php of your child theme:add_filter('avf_blog_style','avia_change_category_blog_layout', 10, 2); function avia_change_category_blog_layout($layout, $context){ if($context == 'archive') $layout = 'blog-grid'; return $layout; }
Best regards,
NikkoHi 952402034,
The labels are built-in the theme, you can modify it in enfold\framework\php\class-breadcrumb-trail.php line 85
'before' => '<span class="breadcrumb-title">' . __( 'You are here:', 'avia_framework' ) . '</span>',
and line 88
'show_home' => __( 'Home', 'avia_framework' ),
if this is replaced in Chinese then just replace it with these default values.
If it is changing for some reason then try to disable the plugins and enable them one by one to know which one is causing the issue.
Otherwise, you can use this filter and add it via functions.php of the child theme to make the tweaks without modifying the core files:
add_filter('avia_breadcrumbs_args', 'avia_change_home_breadcrumb', 10, 1); function avia_change_home_breadcrumb($args){ $args['before'] = '<span class="breadcrumb-title">' . __( 'You are here:', 'avia_framework' ) . '</span>'; $args['show_home'] = 'Home'; return $args; }
Best regards,
NikkoJuly 7, 2023 at 4:23 am in reply to: custom post type permalink change done, showing page not found #1412654Hi NicomIT,
Thanks for giving us admin access.
I tried to check it and it seems to be working on the two latest agents (link in private content) but not on the others.
I also tried to add your code in functions.php of the twenty twenty theme and the results are the same.Best regards,
NikkoHi BenjaminSpeedtsberg,
What Blog Layout are you using?
You can find it in Enfold > Theme Options > Blog Layout > Blog Layout.Best regards,
NikkoJuly 5, 2023 at 12:56 am in reply to: custom post type permalink change done, showing page not found #1412476Hi NicomIT,
Can you give us temporary admin access? so we can try to check the settings and try to replicate the issue.
I tried to replicate it on my end however I think I need to change some settings in my cpt ui plugin since your code does not seem to have any effect or atleast a change in the permalink.
Just post the credentials in private content.Best regards,
NikkoJuly 5, 2023 at 12:34 am in reply to: change the background of featured image in blog-post-element (grid style) #1412475Hi GePu,
Can you try adding this CSS code in Quick CSS: (the code is specific only to your given page)
@media only screen and (min-width:981px) { .page-id-31 #after_section_3 .avia-content-slider .slide-entry-wrap { display: flex; align-items: baseline; } }
Hope it helps.
Best regards,
NikkoHi extraeyes,
On your screenshot the difference is obvious with the first image and second.
I think Mike has provided this screenshot on his end:
And, I see exactly the same thing on my end, I tried to view it in chrome, firefox and edge, I don’t see any difference in color between the two images.
Can you try to view it on a different device?Best regards,
Nikko-
This reply was modified 2 years ago by
Nikko.
Hi menainfosec,
Can you create a staging site? so we can try to debug the issue without affecting the live users of your website.
You can check this tutorial on how to create a staging site: https://wpengine.com/resources/what-is-a-staging-site-why-have-one/#How_to_Create_a_Staging_Site_for_WordPress
Just post the login credentials in private content.Best regards,
NikkoHi germanvoice,
It’s a server issue, I think you should contact your webhost to try to fix it.
Usually it’s server overload or webhost issues, you can check here further on 502 bad gateway: https://kinsta.com/blog/502-bad-gateway/
If it usually happens and your webhost does not resolve it for you, I would suggest migrating to a different webhost.Best regards,
NikkoHi djsmbd,
Please give us temporary admin access, so we can check on the issue further.
Just post the credentials in private content.
Also, please try the troubleshooting steps in our documentation: https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-Best regards,
NikkoHi Antonio,
I tried to check the link you gave however I did not see any repeat of the product anywhere on the page.
The product item on that product page also did not appear on the Related Products section.Best regards,
NikkoHi tonyiatridis,
You’re welcome :)
We’re glad that we could help you.
Thanks for using Enfold and have a great day!Best regards,
NikkoHi tonyiatridis,
I will close this thread as it is a duplicate of your other thread.
We’ll continue the discussion there :)Best regards,
NikkoHi tonyiatridis,
Go to Appearance > Menus, then select the menu you’ve set as the Main Menu.
Open Screen Options on top right corner of the screen and check description
And expand the menu item and edit the description.
Hope this helps.Best regards,
NikkoHi Anish,
Thanks for contacting us!
The customization that you’d like to do requires some time to do those tweaks, please consider renewing support.Best regards,
NikkoJuly 4, 2023 at 12:48 am in reply to: Change the structure of the archive to show the year then by month #1412379Hi Mohammad,
Thanks for contacting us!
Unfortunately we don’t have that feature, please try to check plugins that provide those type of widgets.Best regards,
NikkoHi ballindigital,
I apologize for the delayed response:
For the button, you can use this CSS code:#top .single-product-summary .single_add_to_cart_button { display: block; width: 100%; }
As for the label on top of credit card logos, I think you can use this hook woocommerce_product_meta_end
Best regards,
NikkoJuly 4, 2023 at 12:19 am in reply to: custom post type permalink change done, showing page not found #1412376Hi NicomIT,
Do you use a custom 404 page? if yes, can you try to disable it and see if it helps.
Best regards,
NikkoHi Jainanvanmeteren,
I’m glad that Rikard could help you :)
Thanks for using Enfold and have a great day!Best regards,
NikkoHi Antonio,
You can use this CSS code to cover the whole page and add it in Enfold > General Styling Quick CSS, however since it is at the back of those content elements (like Color Section), you will need to make the content elements transparent:
#top #wrap_all #main { background: blue; background: linear-gradient(45deg, blue 0%, black 100%); }
Best regards,
NikkoHi Rainer,
Please try to add this CSS code in Enfold > General Styling > Quick CSS:
#top.page-id-388, #top.page-id-425, #top.page-id-388 #wrap_all, #top.page-id-425 #wrap_all { overflow: visible; } #top.page-id-388 #wrap_all #av_section_1, #top.page-id-425 #wrap_all #av_section_1 { position: sticky; top: 100px; z-index: 100; }
Hope it helps.
Best regards,
NikkoHi origin,
I’m glad that we could help you :)
Thanks for using Enfold and have a great weekend!Best regards,
Nikko -
AuthorPosts