Forum Replies Created
-
AuthorPosts
-
Hey viom,
Thank you for using Enfold.
The social icons are visible when I check the site. Isn’t that what you wanted? Where do you want the social icons to be?
Best regards,
IsmaelHey SlmnB,
Thank you for using Enfold.
1.) Those are created with the column elements. Add a negative top margin to pull the columns upwards.
2.) That is doable with the Table element. Just set the Table Options > Table Purpose to “tabular” instead of the default option.
Best regards,
IsmaelHey Emmygraph,
Thank you for using Enfold.
There is a custom script for that because it’s not available by default. You can find it here:
// https://kriesi.at/support/topic/hotspots-with-anchor-links-to-tabs-section/#post-896815
Just replace this line:
scrollToTab( '.av-image-hotspot_inner', 'click' );
with the menu selector:
scrollToTab( '.menu-item a', 'click' );
Best regards,
IsmaelOctober 9, 2018 at 5:42 am in reply to: Lighbox issue – pictures shown which do not belong to post #1019330Hi,
The tooltip and the lightbox caption requires the title attribute so removing that particular attribute will affect both. Try to create a script that removes the title attribute on “mouseover” and then brings it back on “mouseout”.
Example here: https://stackoverflow.com/questions/8948113/mouseover-and-mouseout-events-jquery
Best regards,
IsmaelHi,
That is possible. However, you need to modify one of the shortcode files in the config-templabuilder > aviashortcodes > gallery > gallery.php file. Look for this code around line 321:
$tooltip = $caption ? "data-avia-tooltip='".$caption."'" : "";
Replace it with:
$tooltip = $caption ? "data-avia-tooltip-alignment='left' data-avia-tooltip-class='av-tt-default-width av-tt-pos-above av-tt-align-left av-mobile-fallback-active av-tt-hotspot' data-avia-tooltip='".$caption."'" : "";
Best regards,
IsmaelHi,
You can remove the featured from the includes > loop-index.php file. The code that has to be removed may vary depending on the current blog style.
Best regards,
IsmaelOctober 9, 2018 at 5:07 am in reply to: Custom Background Image Logo Area – Image not responsive on mobile #1019311Hey sobemarketing,
Thank you for using Enfold.
That is how the background is supposed to resize on smaller screens. If you want it to be fully visible inside the header container, you can add the following css code but it may distort the image on certain screen sizes.
@media only screen and (max-width: 767px) { .header_color { background-size: 100% 100%; height: 130px; } }
// https://imgur.com/a/xn1SwH5
Best regards,
IsmaelHey adishlomy,
Thank you for using Enfold.
Edit the color section and set the “Section Padding” to “No padding”.
Provide a screenshot of the color section if the option doesn’t remove the gap.Best regards,
IsmaelHi,
Can I have access to the dashboard? The filter excludes items from the child categories when I test it on my installation.
Best regards,
IsmaelHi,
I’ve added the css code on the Quick CSS field. I had to disable the cache plugin temporarily to regenerate the scripts and stylesheets. Enable the cache plugin back once you’re completely done with the site.
// https://imgur.com/a/NcQ0B7j
Best regards,
IsmaelHey DianaLoola73,
Thank you for using Enfold.
I can’t find that particular page. Can you give us the actual url of the page? A screenshot will help as well.
Best regards,
IsmaelOctober 8, 2018 at 4:17 am in reply to: Color section with transparent header not working on Enfold 4.4.1 #1018781Hi,
The full screen slider is hidden because of this css code.
@media only screen and (min-device-width: 767px) { .hide_ipad { display: none !important; } }
Please use the slider’s Screen Options instead.
Best regards,
IsmaelHi,
The “shrinking header” option is not enabled on the “:the-twenty” site. The logo only shrinks because of this css code.
.av_header_transparency .logo, .av_header_transparency .logo a, .av_header_transparency .logo a img { max-height: 220px !important; }
Please remove that css code and then enable the “shrinking” in the Enfold > Header panel.
Best regards,
IsmaelHey Maarten,
Thank you for using Enfold.
Set the builder status to “active”. There’s a public method for that.
AviaBuilder::set_alb_builder_status('active', 3547 );
3547 is the id of the post. It’s going to set the meta info “_aviaLayoutBuilder_active” of that particular post to “active”.
Best regards,
IsmaelHi,
You can add the snippet in the functions.php file.
remove_action('wp_head','avia_debugging_info',1000); remove_action('admin_print_scripts','avia_debugging_info',1000);
Post the login details in the private field if you need assistance adding the code.
Best regards,
IsmaelHi,
Thanks for the update.
Use the POEdit software to translate the text manually. Generate the .mo file or compile it afterwards.
Or post the FTP login details in the private field so that we can upload the updated language file.
Best regards,
IsmaelHi,
The advance layout builder is still not compatible with Gutenberg and I don’t think it will ever be because they are completely different. You will, however, have the option to choose between the theme’s builder or Gutenberg.
Best regards,
IsmaelHi,
Thanks for the update. You can use this css code to adjust the map background size.
.avia-google-map-container { background-size: contain !important; }
Did you opt out of the maps via the privacy consent message? Try to remove the cookies in your browser.
Best regards,
IsmaelHi,
Great! Glad we could help!
Please take a moment to review our theme and show your support https://themeforest.net/downloads
Don’t forget to bookmark Enfold Documentation for future reference.Thank you for using Enfold :)
Best regards,
IsmaelHi,
You can try this code.
function change_pr_logo_path( array $avia_elements = array() ) { $old = AVIA_BASE_URL."images/layout/logo_modern.png"; $new = 'http://localhost/kriesi/enfold/wp-content/uploads/2018/10/splash-orange-3.png'; /** Find index of element to change*/ foreach( $avia_elements as $key => $element ){ if( ((isset( $element['id'] ) && ( $element['id'] == 'main_menu_preview' ) && isset( $element['slug'] ) && ( $element['slug'] == 'menu'))) || ((isset( $element['id'] ) && ( $element['id'] == 'default_header_target' ) && isset( $element['slug'] ) && ( $element['slug'] == 'header'))) ) { $avia_elements[$key]['std'] = str_replace("<img id='pr-logo' src='".$old."' alt=''/>", "<img id='pr-logo' src='".$new."' alt='MyLogo'/>", $avia_elements[$key]['std']); } } /*** Return modified */ return $avia_elements; } add_filter( 'avf_option_page_data_init', 'change_pr_logo_path', 10, 1 );
Just change the $new logo url.
Best regards,
IsmaelHi,
What do you mean by “attach css editor”? Please add the code in the Enfold > General Styling > Quick CSS field or the child theme’s style.css file.
Best regards,
IsmaelHi,
Cool. Glad it’s working. Please feel free to open a new thread if you encounter any issues. :)
Best regards,
IsmaelOctober 8, 2018 at 2:57 am in reply to: Checkout-Returning customer/create an account fields are disappearing in chrome #1018763Hi,
That is happening only in Chrome as i said.
Yes, I know. I just tested it on other browsers. I can’t reproduce the issue even on Chrome.
Best regards,
IsmaelOctober 8, 2018 at 2:55 am in reply to: galleries opening duplicate image on top of lightbox #1018762Hi,
Thanks for the update.
This is all I get when I click the image.
Screenshot: https://imgur.com/a/Vdt5ohx
Where are you testing this? Which browser?
Best regards,
IsmaelHi,
@BSHosts: Please create a new thread with the site url and the login credentials. Review the docs when you have the time.// https://kriesi.at/documentation/enfold/google-map/
Best regards,
IsmaelHi,
Did you try setting it to 15 or any number? Again, the sorting widget is based on that value.
Best regards,
IsmaelHi,
Can you give us an example of the rating widget that you’re trying to create?
Best regards,
IsmaelHi,
This is the html code.
<img class="wp-image-2186 alignleft" src="http://shedoesitcoaching.com/wp-content/uploads/2018/09/Boekje-van-weggever-273x300.png" alt="" width="126" height="138"/> <h3 class="text-center">15 FREE TIPS which improve your work-life balance immediately</h3>
Best regards,
Ismael -
AuthorPosts