Forum Replies Created
-
AuthorPosts
-
January 25, 2017 at 1:51 am in reply to: Login page is not displayed correctly ONLY in Chrome browsers #738054
Hi,
Glad that it’s fixed :)
Best regards,
NikkoHey ellielbailey,
You will need to add some css using nth-child ( http://www.w3schools.com/cssref/sel_nth-child.asp ) in Quick CSS.
Best regards,
NikkoHey sjtchiang,
1. There’s no option to do that since the magazine’s layout is fixed. We can probably do something on this with some css.
2. Try using masonry, it’s possible using it.Best regards,
NikkoHi,
The login details doesn’t seem to work for wp-admin, please check. Also inside WordPress Dashboard can you go to Enfold > Import/Export > Iconfont Manager then try to remove other fonts except: Font: entypo-fontello then Save. Hope this helps :)
Best regards,
NikkoHey AdamTurner,
I think the issue is on the font itself, if I try to change the text to italic it shows like it’s a bit bolder, but if I change the font to something like Arial or Open Sans, it does work properly.
Best regards,
NikkoHi,
I have tried checking it and it works properly on my end. What browser and OS (windows 10 or mac osx) are you using?
Best regards,
NikkoHey raslade,
Try using is_category: https://developer.wordpress.org/reference/functions/is_category/
The code should look something like:
add_filter('avia_blog_post_query', 'avia_modify_post_grid_query_desc'); function avia_modify_post_grid_query_desc( $query ) { if( is_category( 'blue-cheese' ) ) { $query['orderby'] = 'title'; $query['order'] = 'DESC'; return $query; } }
Just change the value inside is_category. Let us know if this helps.
Best regards,
NikkoHi,
You’re welcome. :) Try adding this code:
.av-section-color-overlay-wrap { padding: 10px; }
and place it just below this code (from the code I gave before):
#top.home #av_section_5 .flex_column.av_one_fourth a.avia-button.avia-size-x-large { font-size: 1em !important; padding: 1.2em 0.9em; min-width: 90%; }
Hope this helps :)
Best regards,
NikkoHey ideenstart,
I don’t have any idea why it isn’t showing on Safari though it works fine on chrome or firefox. Can you try adding this in Quick CSS (located in Enfold > General Styling):
.home #sub_menu2 { bottom: 0 !important; }
Then test the homepage in safari, let us know if this helps.
Best regards,
NikkoHey sailboat907,
I just checked it and the 11 posts are still there.
Best regards,
NikkoJanuary 25, 2017 at 12:41 am in reply to: Mobile Phone View – Could not extract stage height #738036Hi,
The error shown is from Nextgen Gallery Pro. Can you try to contact the plugin support, they might know how to fix this issue.
Best regards,
NikkoHey timbright,
To do this you need to add some class to the paragraph where the icon is added (you will need to right some html code). Example it would look like this:
<p class="with_icon">[av_font_icon icon='ue800' font='entypo-fontello' style='' caption='' link='' linktarget='' size='40px' position='left' color='' custom_class=''][/av_font_icon] This is the text</p>
Then on Quick CSS (located in Enfold > General Styling) you add:
.with_icon { position: relative; padding-left: 40px; } .with_icon .avia-icon-pos-left { position: absolute; left: 0; }
Hope this helps :)
Best regards,
NikkoHi,
Thanks for sharing this solution :)
Best regards,
NikkoJanuary 25, 2017 at 12:14 am in reply to: Sort by "page order" in Masonry with Portfolio Entries #738019Hi,
We would be glad to help you with this customization, but at the moment there is no easy way to do this by using a small custom code snippet, so I am afraid its out of the scope of our support.
But please feel free to request such feature at our feature request system: https://kriesi.at/support/enfold-feature-requests/
This system allows us to keep track of user suggestions and lets you vote on the feature you would like to see the most. I am afraid though there is no guarantee that a feature will get implemented. If that’s something you really need you can always try to hire a developer for the task :)
Best regards,
NikkoHey DaveA,
Yes, that makes sense and that is how browsers behave. Can you post a link to the page you have mentioned? so we can take a closer look.
Best regards,
NikkoHi,
You don’t need to add the function in the parent theme, just add it on the child theme’s function.php and that should be enough.
Best regards,
NikkoJanuary 24, 2017 at 11:53 pm in reply to: How to translate buttons "Sort by Price" and "Dispaly XX products per page"? #738004Hi Graham,
I think you can place it back on 1/1 column and just add this css code in Quick CSS (located in Enfold > General Styling):
.container_wrap .av-content-full { overflow-x: hidden; }
Let us know if this helps.
Cheers!
NikkoHi,
Glad we could help :)
Best regards,
NikkoHi,
I checked the issue and it’s a bit weird that it’s not working though there are no js errors showing up. It’s a bit hard to troubleshoot since we couldn’t find the cause of the issue. Can you give us ftp access? so we can dig deeper on this issue, also give us permission to deactivate all plugins.
Best regards,
NikkoHi,
I’m not sure how we can help with the issue, but probably much resources is used. Can you try to increase the memory limit: https://docs.woocommerce.com/document/increasing-the-wordpress-memory-limit/
Hope this helps.Best regards,
NikkoHey demarko19,
No, the post with most number of comments will appear on the Popular section.
Best regards,
NikkoHey fulanoinc,
Sorry for the late reponse but can you please post us your login credentials (in the “private data” field), so we can take a look at your backend.
Login credentials include:
- The URL to the login screen.
- A valid username (with full administration capabilities).
- As well as a password for that username.
- permission to deactivate plugins if necessary.
Best regards,
NikkoHey Graham,
We apologize for the late response. Can you try to place the masonry gallery out of the 1/1 column, and check if this fixes the problem.
Best regards,
NikkoHi,
Sorry I missed this thread. I have reconnected the mailchimp api and it seems to work even after I have logged out. Once it was activated the form was showing up, I changed the Form Elements’ Form Element Width and set it from Fullwidth to 1/4. Let us know if the issue still persists and apologize for the delayed response.
Best regards,
NikkoHey!
Glad we could help :)
Cheers!
NikkoHi,
Try adding this css code in Quick CSS:
#top #header li.current-menu-item > a .avia-menu-text { border-color: #fff; color: #fff; }
then add this code at the bottom of functions.php:
function add_custom_menu_script(){ ?> <script type="text/javascript"> (function($){ function menu_button() { jQuery("#avia-menu").find("li.current-menu-item").addClass("av-menu-button av-menu-button-bordered"); } menu_button(); })(jQuery); </script> <?php } add_action('wp_footer', 'add_custom_menu_script');
Let us know if this helps :)
Cheers!
NikkoHey,
I’m not sure if I understood correctly but is it the white border at the bottom of an active menu? you might want to add this code in Quick CSS:
#top #avia-menu li.current-menu-item > a .avia-menu-fx { background: green; bottom: 1px; }
Just adjust the background color as you see fit.
Best regards,
NikkoHi umeworks,
Glad that it’s fixed.
@kevinmcgillivray: Thanks for helping out. :)Best regards,
NikkoHi,
In your wp-config.php do you have:
define('DB_CHARSET', 'utf8');
or
define('DB_CHARSET', 'utf8mb4');
? try switching if that doesn’t work, try using this plugin https://wordpress.org/plugins/better-search-replace/ and try to search and replace the characters.
Best regards,
Nikko -
AuthorPosts