Forum Replies Created
-
AuthorPosts
-
November 22, 2018 at 11:50 am in reply to: Hacken bei Bestellvorgang (Lieferung an eine andere Adresse senden) entfernen. #1036466
Hey Manko267,
Thank you for using Enfold.
In the Admin-> Woocommerce-> Settings-> Shipping-> Shipping Options, find the Shipping Destination, and make sure that “Force shipping to the customer billing address” checkbox is checked.
Best regards,
IsmaelNovember 22, 2018 at 11:47 am in reply to: Remove validation asterisk from contact form element #1036464Hi,
Awesome! 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,
IsmaelNovember 22, 2018 at 11:46 am in reply to: How can I put in the Google Captcha in the Enfold contact form #1036461Hi,
Thank you for the kind words. I sure hope I can help you again next time.
Have a nice day.
Best regards,
IsmaelHi,
Look for these lines:
$menu_locations = array_flip( get_nav_menu_locations() ); $nav_menus = wp_get_nav_menus();
And replace it with the modification:
$nav_menus = wp_get_nav_menus(); /** * array_flip does not work because plugins like <a href='http://bit.ly/kwpml' target='_blank' rel="nofollow">WPML</a> might return '' or null for value which throws a warning * * $menu_locations = array_flip( get_nav_menu_locations() ); */ $menu_locations = array(); $temp = get_nav_menu_locations(); foreach ( $temp as $loc => $term_id ) { if( is_numeric( $term_id ) && ( $term_id > 0 ) ) { $menu_locations[ $term_id ] = $loc; } }
Best regards,
IsmaelHi,
I would like to apologize for the late response. Let’s try it again from scratch. I tried to use the v3 script but it didn’t work, so I turned it back to v2. You have to generate the v2 keys now. This is the updated script.
// https://pastebin.com/L9hwBthv
Post the v2 keys in the private field and put the script back in the functions.php file.
Best regards,
IsmaelHi,
What do you mean by “calendar box” exactly? Have you tried adding the date picker element? Again, a calendar box should open when you click on it.
Best regards,
IsmaelNovember 22, 2018 at 11:19 am in reply to: Masonry post excerpt is not displayed on the tablet portrait view #1036438Hi,
Thanks for the update. I can see the issue now. Use this css code to redisplay the masonry content on that screen size.
@media only screen and (max-width: 989px) and (min-width: 767px) { .responsive .av-masonry-entry .av-masonry-entry-title+.av-masonry-entry-content { display: block; } }
`
Best regards,
IsmaelHi,
I would like to apologize if it took that long. Please open a new thread if you need anything else.
Best regards,
IsmaelHi,
The plugin on my local installation is still on version 3.4.6 and I’m not aware of that change. Thanks for the info.
Best regards,
IsmaelHi,
Thanks for the update.
I modified the code a bit. It should work now. Don’t forget to remove the browser cache prior to testing.
Best regards,
IsmaelHi,
That is the default margin of the columns. You can use this css code but it will affect every columns in a single post page.
body.single .column-top-margin { margin-top: 0; }
Best regards,
IsmaelHi,
You should use the WP Migrate DB plugin because it will include all entries in your database including the custom fields. Have you tried using the plugin? Create backups of the sites and post the FTP details in the private field.
Best regards,
IsmaelNovember 21, 2018 at 2:10 pm in reply to: Enfold plus gravity forms "other" alignment issue #1036055Hey Steve,
Thank you for using Enfold.
This css code should help:
.gfield_radio input[type=radio] { float: left; } .gfield_radio input[type="text"] { max-width: calc( 100% - 20px ); }
Best regards,
IsmaelNovember 21, 2018 at 2:06 pm in reply to: Masonry post excerpt is not displayed on the tablet portrait view #1036053Hi,
Thanks for the update. I can’t reproduce the issue on my end. The excerpt is visible on tablet screens. Is this fixed?
Best regards,
IsmaelHi,
Thank you for using Enfold.
Is this fixed? Please open a new thread if you need additional help.
Best regards,
IsmaelNovember 21, 2018 at 12:59 pm in reply to: How to add the category above the title of a single post in a child theme #1036031Hi,
1.) Did you change the theme folder name? You can’t change the theme name without losing the options because the dynamic stylesheets and options rely on that, it’s the name that’s saved in your database. You have import or create a backup of the theme options and your css modification first from the theme’s import/export panel before renaming it. You can then export the data back on the same panel.
2.) You have to modify the includes > loop-single.php file if you want to move the post elements around.
Best regards,
IsmaelNovember 21, 2018 at 12:47 pm in reply to: Gravity Forms + Gravity View not working with the last Enfold version #1036023Hey Ikyo,
Thank you for using Enfold.
I can’t reproduce the issue on that page. Is it using the old version of the theme? Do you have a staging site? You may need to disable the Enfold > Performance > File Compression options after updating to the latest version.
Best regards,
IsmaelHi,
This should help:
// https://kriesi.at/support/topic/fallback-image-not-loading/#post-1023866
That css code will set a minimum height to the slider. You can also hide that slider on mobile view and then display a full screen slider instead. Use the sliders’ Screen Options.
Best regards,
IsmaelHi,
Thanks for the update. Use this filter to add a new element below the header.
add_action('ava_after_main_container', 'ava_after_main_container_mod', 10); function ava_after_main_container_mod() { echo '<div class="fixed-donate-button">DONATE</div>'; }
You can then target that class attribute to set the container as a fixed element in the browser.
.fixed-donate-button { position: fixed; right: 10%; bottom: 10%; z-index: 1000; }
Best regards,
IsmaelHi,
You should ask the plugin author for the actual hook/function that the plugin is using to render the related products and then remove it with the “remove_action” function. You can then use the plugin function back on another hook, or adjust the priority, to move the related post section wherever you like.
This one removes the default woocommerce related products section:
// https://docs.woocommerce.com/document/remove-related-posts-output/
Best regards,
IsmaelHi,
That is the default width of the “entry_without_sidebar” thumbnail. Use this plugin to adjust it.
// https://wordpress.org/plugins/simple-image-sizes/
Don’t forget to regenerate the thumbnails after the adjustment.
Best regards,
IsmaelNovember 21, 2018 at 11:54 am in reply to: Enfold contact form not sending mail – other problems ruled out #1035993Hi,
@VanDongenOnline: Thanks for the info. This might help as well:// https://kriesi.at/documentation/enfold/contact-form/#my-contact-form-is-not-sending-emails-
Best regards,
IsmaelHey Craig,
Thank you for using Enfold.
That button is visible on my installation. Have you tried disabling the plugins? Maybe, there’s a conflict somewhere.
Best regards,
IsmaelHi,
How can I near a little bit the pictures?
It’s a bit unclear. Do you want to create some space between the images? You can use the separator/white element for that.
Best regards,
IsmaelNovember 21, 2018 at 11:27 am in reply to: Burger Menu not displaying correctly on Iphones (Safari) #1035984Hey Davideto,
Thank you for using Enfold.
Did you move the site? It’s not loading properly on my end. I’ll ask the team to check it on iPhone.
Best regards,
IsmaelHi,
I can’t reproduce the issue on my end, checking on Chrome/Opera Windows 8. The password page displays immediately on page load. Is this fixed? Where are you testing it?
Best regards,
IsmaelHi,
Thanks for the update. The login credentials are incorrect though. Please check it carefully.
And avoid posting sensitive info in the public field because everyone will see it.Best regards,
IsmaelHi,
The menu items are working properly on my end. What do you mean by “roll-over”? You can use this css code to change the hover state color.
.main_color .av-subnav-menu a:hover { color: red; }
Best regards,
Ismael -
AuthorPosts