Forum Replies Created
-
AuthorPosts
-
August 3, 2018 at 9:16 am in reply to: [URGENT]: Header icon displaying & menu changes color #993112
Hi,
The logo image has a lot of blank space on the right. Why did you resize it like that? Please upload a larger version of the image without those blank spaces. We can then adjust the position of the logo with css. (see private field)
Best regards,
IsmaelHi,
Thanks for the info.
I imported the layer sliders manually. Are you going to use the demo images? The pages were actually imported properly but without the images. You can replace them with your own.
Best regards,
IsmaelHi,
What is the actual size of the fallback image? And where are you testing it? Have you tried to upload an image that fits within the standard mobile screen resolutions?
// https://deviceatlas.com/blog/most-used-smartphone-screen-resolutions
Best regards,
IsmaelHi,
Thanks for the update.
I can’t reproduce the layer slider issue. Is it only happening on Safari too?
Best regards,
IsmaelAugust 3, 2018 at 8:33 am in reply to: Need immediate help, please-Enfold conflicting with WP-Admin login. Error code #993098Hi,
Thanks for the update.
The following login credentials (see private field) are invalid. Please check it carefully.
Best regards,
IsmaelAugust 2, 2018 at 7:09 am in reply to: Fullwidth slider caption fading in instead of sliding in sidewards #992734Hi,
I adjusted the animation values a bit.
-webkit-animation: avia_appear_fade 0.6s 1 ease-in; animation: avia_appear_fade 0.6s 1 ease-in;This is the same as the animation effect from the demo.
-webkit-transition: opacity 0.6s ease-in; transition: opacity 0.6s ease-in;Please purge the cache prior to checking the page.
Best regards,
IsmaelAugust 2, 2018 at 7:05 am in reply to: Attachment Display Settings – SIze Drop Down Box stopped working #992729Hi,
Thanks for the update.
We have to access the site. Please post the login details in the private field.
Best regards,
IsmaelAugust 2, 2018 at 7:04 am in reply to: Blog dates not showing on translation page and blog notifications to subscribers #992728Hi,
Thanks for the update.
Did you add any scripts or modifications in the child theme’s functions.php file? Please make the Appearance > Editor panel accessible so that we can check the files.
Best regards,
IsmaelAugust 2, 2018 at 7:02 am in reply to: Remove thumbnail overlay, disable changing of big image, remove first thumbnail #992727Hi,
Try to decrease the “Maximum Container width” value in the Enfold > General Layout > Dimension panel.
Best regards,
IsmaelHi,
Thanks for the update.
The layer sliders display consistently when the Woocommerce plugin, along with its extensions, are deactivated. I think it is safe to say that this particular error from the “woocommerce.min.js” causes the issue. Please try to disable every plugins except WooCommerce and then check if the “Cookies” error persists. It looks like a plugin conflict.
Best regards,
IsmaelHi,
Can we have access to your peepso account so that we can test it? Are you referring to the content cards?
// https://www.wpbeginner.com/plugins/how-to-add-links-as-content-cards-in-wordpress/
// https://wordpress.org/plugins/content-cards/Best regards,
IsmaelHi,
Great! That css code is invalid though. There’s an extra curly brace below. You should remove that.
Best regards,
IsmaelAugust 2, 2018 at 6:09 am in reply to: [URGENT]: Header icon displaying & menu changes color #992712Hi,
Thanks for the update.
My previous reply along with the css codes has been included on the Quick CSS field, which is why it’s not working. I removed that text and then fixed a few invalid or unclosed css media queries. Please create a backup of the current style.css file and then replace it with the following:
// https://pastebin.com/aW41jzce
I edited some of the css media queries.
Best regards,
IsmaelHi,
Glad that you found a plugin. :)
1.a) Use this css code to move the form downwards.
#top #wpppass form { margin: 50px auto; }1.b – 1.c) Use this one to center align the form fields and adjust the font of the label.
#wpppass form label { text-align: center; font-size: 14px; font-weight: 400; } #wpppass form input[type="password"], #wpppass form input[type="submit"] { margin: 10px auto; }2.) This one should change the menu font color for that specific page.
.page-id-483 .main_menu ul:first-child > li > a { color: green !important; }Adjust the color value as needed.
Best regards,
IsmaelHi,
Thanks for the update.
You should see these codes in the comments.php file, around line 164.
echo " <div class='comment_container'>"; echo "<h3 class='miniheading'>".__('Leave a Reply','avia_framework')."</h3>"; echo "<span class='minitext'>".__('Want to join the discussion?','avia_framework')."".__('Feel free to contribute!','avia_framework')."</span>"; comment_form(); echo "</div>";Just change the default text to something else and then saved the file. If it’s not working, post the login details in the private field so that we can test it. Make sure that the Appearance > Editor panel is accessible.
Best regards,
IsmaelAugust 2, 2018 at 5:49 am in reply to: Hover colour on main menu loses colour when moving mouse down to sub-menu items #992701Hi,
Did you try to remove the css modifications? I think that’s why the sub menu container is becoming white.
Please post the login details in the private field if the issue persists after removing the css modifications.Best regards,
IsmaelHi,
Thanks for the update.
The file compression features from the Enfold > Performance panel are enabled, which is why the changes are not taking effect. Enable that feature again once the site is completely ready.
Best regards,
IsmaelHi,
I can’t see it now. Not sure sure why it’s not there, yesterday. Add this css code to remove it.
@media only screen and (max-width: 767px) { .responsive #top .av-main-nav #menu-item-search { display: none !important; } }Best regards,
IsmaelAugust 2, 2018 at 5:40 am in reply to: Fullwidth Easy Slider: takes too long to load – images are too hgh #992695Hi,
Thanks for the update.
Yes, you can copy that configuration inside the .htaccess file. It’s the same configuration as when you’re installing a cache plugin.
Best regards,
IsmaelHi,
Glad it worked. :)
Remove the href attribute of the read more text or replace it with a span tag.
<span rel="nofollow">Read more</span>Best regards,
IsmaelHi,
You may need to re-configure the widgets in the Appearance > Widgets. I’m not sure why they were changed though.
Best regards,
IsmaelHi,
Glad it worked. Use this css code to adjust the position of the search form.
#top #header_meta .sub_menu { left: -300px; } #avia2-menu #menu-item-search2 { top: -25px; right: -260px; }Best regards,
IsmaelHi,
Thanks for the update.
You can try this filter to fetch and only display the upcoming events.
add_filter('avia_post_slide_query', 'avia_post_slide_query_mod', 10, 2); function avia_post_slide_query_mod( $query, $params ) { $eventquery = array('paged'=> false, 'eventDisplay' => 'list'); $upcoming = Tribe__Events__Query::getEvents( $eventquery, true); $include = array(); foreach($upcoming->posts as $key => $event) { $include[] = $event->ID; } $query['tax_query'] = array(); $query['post__in'] = $include; return $query; }You may need to add a conditional function to exclude other posts sliders.
Best regards,
IsmaelHi there!
Again, thank you for using Enfold! :)
The site seems to be shaping up well. Anyway, the popup works properly when I tested it. Are you referring to the following link or text?
Click here to subscribe for future clinic news, updates and info. via email.”
Best regards,
IsmaelHi,
Did you change the page id selector to “.page-id-42”? Please set the account to admin so that we can check the settings or edit the file.
Best regards,
IsmaelHi,
Thanks for the update.
These css codes should change the background and remove the image.
#top .avia-post-nav { background: red; background: rgba(255,25,30,0.1); color: #fff; } #top .avia-post-nav:hover { background: red; background: rgba(255,25,30,0.8); } #top .avia-post-nav .entry-image { display: none !important; } #top .avia-post-nav:hover .entry-info-wrap { width: 100px; } #top .avia-post-next.with-image { text-align: left; } #top.avia-post-prev.with-image { text-align: right; } #top .avia-post-nav .entry-info { width: 100%; margin: 0; }Best regards,
IsmaelHi,
Thanks for the update.
The css code is not supposed to work. I just put it there to show you how setting a specific height would affect the sections.
Can you be more specific? There’s a lot of results in that search and I’m not really sure which design you’re trying to emulate.If you want the following design (see private field), try the masonry element. Set the “Size Settings” to “Perfect Manual Masonry” so that you can control the size and orientation of the images using post tags.
Perfect Manual Masonry: Manually control the height and width of entries by adding either a “landscape” or “portrait” tag when creating the entry. Elements with no such tag use a fixed default size, elements with both tags will display extra large
Best regards,
IsmaelHi,
Thanks for the info.
There’a an extra space before the actual API key. I corrected that but then I got this error.
Geocoding Service: This API project is not authorized to use this API. For more information on authentication and Google Maps JavaScript API services please see: https://developers.google.com/maps/documentation/javascript/get-api-key
You need to enable the Geocoding Service API manually.
Here’s how: https://kriesi.at/documentation/enfold/google-map/#enable-services-for-google-apiBest regards,
Ismael -
AuthorPosts
