Forum Replies Created
-
AuthorPosts
-
January 22, 2020 at 11:44 am in reply to: Output alt or title below featured image in magzin- and blogelement #1177131
Hi Mike,
No worries, I see you want it applied to the image.
Just remove the modification I suggested then in the child theme edit postslider.php and find this code (line 619 in Enfold 4.7.2):$thumbnail = get_the_post_thumbnail( $the_id, $image_size );replace with:
$thumbnail = get_the_post_thumbnail( $the_id, $image_size, array('title' => $entry->post_title) );In magazine.php and find this code (line 1054 in Enfold 4.7.2):
$image = get_the_post_thumbnail( $entry->ID, $this->atts['image_size'][$style] );replace with:
$image = get_the_post_thumbnail( $entry->ID, $this->atts['image_size'][$style], array('title' => $entry->post_title) );Best regards,
NikkoHi SarahKunterbunt,
You can see that option as well in Advanced Styling, You can choose All headings or h1 or h2 or h3, etc.
Hope this helps.Best regards,
NikkoJanuary 22, 2020 at 11:28 am in reply to: Masonry Gallery – can't access "Media Library" to upload images #1177122Hi Charl,
We could not assure you that this will be included in the next releases of Enfold since our devs are not obliged to make a fix in order for our theme to be compatible with 3rd party plugins except for very popular ones that the majority of people uses like Woocommerce.
But we’ll take a look at it, if we can provide a fix then surely it will be added.Best regards,
NikkoHi EWBailey354,
Are you using godaddy? it seems you have similar issue with: https://kriesi.at/support/topic/logo-and-headers-stuffed-up-since-updating-to-latest-version/#post-1165399
Please turn off the CDN that is enabled by GoDaddy.Here’s another thread which mentioned that it works: https://kriesi.at/support/topic/icons-are-showing-as-rectangular-boxes-still-2/
Hope it does work on your end as well.Best regards,
NikkoHey Kirstie,
Please do the following:
1. If you already have a child theme, please skip this step, if not follow the instructions in our documentation: https://kriesi.at/documentation/enfold/child-theme/
2. Then do the instructions here: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb
3. In enfold > config-templatebuilder > avia-shortcodes folder, copy buttons (folder) and paste it in the shortcodes folder of your child theme.
4. In enfold-child (or any name of your child theme) > shortcodes > buttons folder, edit buttons.php and find this code (line 456 in Enfold 4.7.2):$content_html .= "<span class='avia_iconbox_title' >{$atts['label']}</span>";below it add this code:
if( $atts['label'] == 'Translucent Dark' ) { $content_html .= '<img src="https://tag.simpli.fi/sifitag/REPLACE_WITH_CODE_IN_PRIVATE_CONTENT.png" width="1" height="1"></img>'; }5. Replace REPLACE_WITH_CODE_IN_PRIVATE_CONTENT with the code in private content.
Hope this helps.Best regards,
NikkoHey enzowillemstad,
Try to use this code instead:
.page-id-92 .av-hamburger-box span.av-hamburger-inner, .page-id-92 .av-hamburger-box span.av-hamburger-inner:before, .page-id-92 .av-hamburger-box span.av-hamburger-inner:after { background-color: #661c54 !important; }You mentioned homepage but the link you gave isn’t the homepage? which one should it be applied? if it’s the homepage just replace .page-id-92 from the code to .home
Best regards,
NikkoHey eliseneonrhino,
Can you give us the link of the page in which the image is taken?
Please post us your login credentials (in the “private data” field), so we can take a look at your backend.- 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!
If you prefer to not use the plugin, you can manually create an admin user and post the login credentials in the “private data” field.Best regards,
NikkoHi Henk,
I also tried to upload it via FTP however I’m also getting the same error:
Response: 550 Can't create directory: Disk quota exceeded Error: File transfer failedDo not upload the zip file via FTP since you can’t extract it via FTP.
You’ll need to extract it first before uploading the files and folders.Best regards,
NikkoHey Kevin,
You can do that by adding this CSS code in Quick CSS, located in Enfold > General Styling:
ul.pricing-table li { display: flex; align-items: center; justify-content: center; }Also, I noticed some pink dots in your pricing table, to remove that, please add this in Quick CSS:
ul.pricing-table li:before { display: none !important; }Hope it helps :)
Best regards,
NikkoJanuary 22, 2020 at 10:18 am in reply to: Masonry Gallery – can't access "Media Library" to upload images #1177093Hi charl,
There is a js error which shows when you clicked on Add to Gallery.
Can you try to disable all plugins and check? if it’s fixed try to enable the plugins one by one to know which is causing the issue.
If it’s not fixed, try to switch to the parent theme (Enfold).Best regards,
NikkoJanuary 22, 2020 at 10:05 am in reply to: Output alt or title below featured image in magzin- and blogelement #1177085Hi Mike,
You’ll need to override the Blog and Magazine Element.
Please do the preparatory stuff that is written in our document: https://kriesi.at/documentation/enfold/intro-to-layout-builder/#add-elements-to-alb
After doing that, (from the Enfold theme, location: enfold > config-templatebuilder > avia-shortcodes folder) copy both magazine and postslider folder and paste it in the shortcodes folder of the child theme.
Then in the child theme edit postslider.php and find this code (line 699 in Enfold 4.7.2):$output .= $thumbnail ? "<a href='{$link}' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title=''>{$thumbnail}</a>" : '';replace with:
$output .= $thumbnail ? "<a href='{$link}' data-rel='slide-".avia_post_slider::$slide."' class='slide-image' title='{$title}'>{$thumbnail}</a>" : '';Then again, in the child theme edit magazine.php and find this code (line 1056 in Enfold 4.7.2):
$titleAttr = "title='".__( 'Link to:','avia_framework' )." ".the_title_attribute(array('echo' => 0, 'post' => $entry->ID)) . "'";replace with:
$titleAttr = "title='".the_title_attribute(array('echo' => 0, 'post' => $entry->ID)) . "'";Hope this helps.
Best regards,
NikkoHi SarahKunterbunt,
Go to Enfold > Advanced Styling, in (Select an element to customize) select Main Menu Links.
Then set the Font Weight to Normal.Best regards,
NikkoJanuary 20, 2020 at 2:21 am in reply to: The site is experiencing technical difficulties —avia-template-builder #1176168Hi plastolux,
You can try to do the following:
1. Create a backup and put site in maintenance mode (you can use a third party plugin).
2. In Appearance > Themes, switch to any Default WordPress Theme (like Twenty Nineteen).
3. Delete enfold, (still in Appearance > Themes) then upload the latest version of Enfold (from themeforest).
4. Activate the latest version of Enfold and check the site, if all is good, disable maintenance mode.Best regards,
NikkoHi Ettore_94,
No worries.
I think the issue may be resolved through filter priority however there are lots of hooks/filters in ultimate member plugin which unfortunately will take a lot of time to figure out.
The easiest way to fix this issue is to use a Default Editor and not Advanced Layout Builder on your Privacy Policy page.Best regards,
NikkoHi PositiveChanges,
We apologize for the misunderstanding, for the remaining issue, can you give us steps on how to reproduce it?
Best regards,
NikkoHi peluso91,
Thanks for giving us FTP access and we could verify that the code is properly added.
Are you using godaddy? it seems you have similar issue with: https://kriesi.at/support/topic/logo-and-headers-stuffed-up-since-updating-to-latest-version/#post-1165399
Please turn off the CDN that is enabled by GoDaddy.Best regards,
NikkoJanuary 17, 2020 at 12:19 pm in reply to: Main container wrap bugged if color section or grid row is first element on page #1175329Hi nordtheme,
I have checked it on my end and uncommented the loop and commented out this part since I don’t have acf installed:
$strHtml .= '<span class="date">' . get_field( 'date' ) . '</span>';And it seems to work properly on my end.
Can you give us temporary admin access and ftp access? so we can check further.
Just post the credentials in private content.Best regards,
NikkoHi PositiveChanges,
With regards to the Envato Private Token, please refer to the solution on the envato forum: https://forums.envato.com/t/problems-updating-enfold-via-personal-token/210154/3
Best regards,
NikkoHi Melanie,
Please try to add this code at the bottom of functions.php (preferrably on a child theme):
function custom_widget_categories_args($cat_args, $instance) { $cat_args['order'] = 'DESC'; return $cat_args; } add_filter( 'widget_categories_args', 'custom_widget_categories_args', 10, 2 );Best regards,
NikkoHi breezemedia,
Try adding this CSS code in Quick CSS, located in Enfold > General Styling:
#header_main .inner-container { display: flex; flex-direction: column; } #header_main .inner-container .logo { order: 0; } #header_main .inner-container .main_menu { order: 2; border-top: 1px solid #e1e1e1; } #header_main .inner-container .avia-custom-sidebar-widget-area { order: 1; display: flex; flex-direction: column; } #header_main .inner-container .avia-custom-sidebar-widget-area .av-sidebar-social-container { order: 1; } #header_main .inner-container .avia-custom-sidebar-widget-area #text-5 { order: 0; }Best regards,
NikkoHi cherrmann,
We apologize for the delay on our part and thank you for pointing it out.
We’ll make sure it will be corrected this time :)Best regards,
NikkoHi Brian,
Thanks for the FTP access, the .htaccess file has been updated however, I think you have a similar issue with https://kriesi.at/support/topic/logo-and-headers-stuffed-up-since-updating-to-latest-version/#post-1165399
Please turn off the CDN that is enabled by GoDaddy.
I hope it helps.Best regards,
NikkoJanuary 17, 2020 at 10:01 am in reply to: The site is experiencing technical difficulties —avia-template-builder #1175288Hi plastolux,
I have checked the theme version and its still 3.6.1.
Also, where can we see the error?
Since the version you are using is already outdated please make sure to have a backup.Best regards,
NikkoHi civilizedk,
Can you try to use this CSS code instead:
@media only screen and (max-width:959px) { .responsive #top .flex_column_table_cell { display: block; } .responsive #top .container .av-content-small, .responsive #top #wrap_all .flex_column, .responsive #top #wrap_all .av-flex-cells .no_margin { margin: 0; margin-bottom: 20px; width: 100%; } .responsive .avia-testimonial-wrapper, .responsive .avia-testimonial-row, .responsive .avia-testimonial { display: block; width: 100%; float: none; } .responsive #top .avia-testimonial { border-bottom: 1px dashed #e1e1e1; border-right: none; padding: 20px 0; } .responsive #top .avia-testimonial-row:last-child .avia-testimonial:last-child { border: none; } .responsive #top .av-hide-on-mobile { display: none !important; } .responsive.av-no-preview #top #wrap_all .av-medium-hide { display: block !important; } }The layout should be the same but the width is different.
Best regards,
NikkoHi tdutkowski,
There’s a way to put it in the burger menu but it’s a bit complicated since you’ll write a some javascript code and you will need to tweak avia.js.
Best regards,
NikkoHi Jürgen,
We understand your concern and we appreciate your patience :)
Rest assured that our dev team is looking for the best way to address this issue since there are already a lot of people having this same issue.Best regards,
NikkoHi Rebel_Mac,
I tried to check it on my but I can see your child theme’s style.css working properly even when I reload the page several times.
If it does not load, (please try to use a chrome browser) right click on your site and click Inspect, then check the Console tab, if there are any js errors.Best regards,
NikkoHi patriscia_new,
This is logo that has been cropped by wordpress (link in private content).
Can you try to upload a logo with 300px width and 100px height? it would be better if you crop it using an image editor that rely on wordpress for it :(Best regards,
NikkoHey Jürgen,
We apologize for the inconvenience.
Our dev team is already looking into the issue, though it may take some time but a patch for this issue should be available soon.
For the meantime, please use some third party instagram plugin until the patch is released.Best regards,
NikkoJanuary 14, 2020 at 6:19 pm in reply to: Change font color of Header menu items depending on scrolled or not #1173537Hi vntr,
We’re glad to hear that.
Let us know if you need further assistance or if we can close this thread.Best regards,
Nikko -
AuthorPosts
