Forum Replies Created
-
AuthorPosts
-
Hi Antonio!
Yes, it pulls the right image when you enter the right email, the problem is that your WordPress user has the wrong email, there is a typo in the domain – http://screencast.com/t/Bj5Evyr5a3
Best regards,
JosueI see, i’ll suggest the idea to Kriesi.
Thanks,
JosueHi Micheal!
Try:
#top #wrap_all .av-social-link-gplus a { color: green; }Regards,
JosueJanuary 19, 2015 at 7:09 pm in reply to: How to have the blog width smaller than the main content? #382028Hi,
You can prefix the .single-post class to your selectors so they only affect single-view Posts:
#top.single-post .fullsize .template-blog .post .entry-content-wrapper{text-align: left; font-size:18px; line-height: 150%; max-width: 660px; } #top.single-post .fullsize .template-blog .post .entry-content-wrapper > *{ max-width: 660px; } #top.single-post .fullsize .template-blog .big-preview img{width:660px;} #top.single-post .fullsize .big-preview .avia-gallery {width: 660px;} #top.single-post .comment_container{max-width: 660px;}Regards,
JosueHi!
Validation is working, problem is that you have a rule in your style.css that is overwriting the red border that normally appears when a field is not valid, adding this to your style.css will fix it:
#top #wrap_all .error .text_input, #top #wrap_all .error .text_area, #top #wrap_all .error .select{ border:1px solid #DF653E !important; }Best regards,
JosueJanuary 19, 2015 at 6:58 pm in reply to: WordPress 4.1 and Enfold 3.0.4 no visuell edit, no extended layout editor #382019Hey!
Try adding this lines to your wp-config.php file:
define( 'CONCATENATE_SCRIPTS', false ); define( 'WP_MEMORY_LIMIT', '256M' );Best regards,
JosueJanuary 19, 2015 at 6:56 pm in reply to: Using the same Enfold folder in multiple 'developing environment websites' #382015Correct.
Hi!
You needed to pass the echo=0 argument to the
pll_the_languagesfunction so it doesn’t automatically shows, check it now. I also added this to Quick CSS:.lang_switcher_polylang { position: absolute; top: 0; right: -100px; } .lang_switcher_polylang li{ display: block; float: none; } .av-main-nav { position: relative; right: 100px; }Cheers!
JosueJanuary 19, 2015 at 6:44 pm in reply to: Post Launch Issues – Weren't present on testing page?! #382006Hey!
1. Try using another plugin – https://wordpress.org/plugins/tags/twitter-feed
2. It is safe to use CF7 as a replacement.
Regards,
JosueJanuary 19, 2015 at 6:38 pm in reply to: ENFOLD SINGLE PRODUCT PAGE- SIDEBAR WILL NOT APPEAR ON THE RIGHT #381996Hey!
2. I believe is this one – https://wordpress.org/plugins/collapsing-categories/
3. Could you elaborate on what do you want to edit?
Cheers!
JosueHi Steve!
1. Where is that text located?
2. Logo normally doesn’t scale down (you can check it here), however if you want to scale it down at a certain screen size use this code in Quick CSS:
@media only screen and (max-width: 1200px) { .responsive .logo img { max-width: 330px; height: 100%; } }3. Couldn’t note on my end, on which browser are you experiencing this?
Regards,
JosueJanuary 19, 2015 at 6:08 pm in reply to: Bug: Umlaut in Team Member Job title breaks team member widget #381968Hi @treestones,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueYes, it is somewhat confusing. One thing you could do is list those on the right sidebar using a Custom Menu widget. Also, i’d suggest trying to reduce the similarity between pages, that could create some confusion, for example: /exercises-stretches/lower-back-exercises/ and /lower-back-exercises-stretches/.
Regards,
JosueHmm, could you please check here if the associated email returns the right image?
Best regards,
JosueHello Nick,
Have you tried disabling all third-party plugins to see if it gets fixed?
Regards,
JosueHi!
Can you paste the
avia_social_share_link_argumentsfilter code you are using so i can test it on my install?Best regards,
JosueHey!
If you want to have this mod in your child theme i think it would be best to copy the whole
avia_social_share_linksclass into your child functions.php.Cheers!
JosueJanuary 18, 2015 at 8:27 am in reply to: Does Enfold use Waypoints somewhere inside the template's Javascript files? #381380Hey Don!
Yes, we include Waypoints in js/avia.js, around line 1846.
Best regards,
JosueHola,
Prueba desactivar todos los plugins, sino se arregla con eso creanos un usuario de administrador y ponlo aqui como respuesta privada para verlo con mas detalle.
Saludos,
JosueHi Akzleung!
I’m unable files from the Dashboard, try changing your code to:
if(!function_exists('avia_append_search_nav')) { //first append search item to main menu add_filter( 'wp_nav_menu_items', 'avia_append_search_nav', 10, 2 ); add_filter( 'wp_nav_menu_items', 'append_polylang_func', 100, 2 ); function append_polylang_func ( $items, $args ) { if ((is_object($args) && $args->theme_location == 'avia') || (is_string($args) && $args = "fallback_menu")) { $items .= '<div class="lang_switcher_polylang">'.pll_the_languages()."</div>"; } return $items; } add_filter( 'avf_fallback_menu_items', 'avia_append_search_nav', 10, 2 ); function avia_append_search_nav ( $items, $args ) { if(avia_get_option('header_searchicon','header_searchicon') != "header_searchicon") return $items; if(avia_get_option('header_position', 'header_top') != "header_top") return $items; if ((is_object($args) && $args->theme_location == 'avia') || (is_string($args) && $args = "fallback_menu")) { global $avia_config; ob_start(); get_search_form(); $form = htmlspecialchars(ob_get_clean()) ; $items .= '<li id="menu-item-search" class="noMobile menu-item menu-item-search-dropdown"> <a href="?s=" rel="nofollow" data-avia-search-tooltip="'.$form.'" '.av_icon_string('search').'><span class="avia_hidden_link_text">'.__('Search','avia_framework').'</span></a> </li>'; } return $items; } }Cheers!
JosueHey!
No, i made those edits live (via Inspect Element), the idea is to have all the items under the same menu but to set a custom class to these navigation items and add this to Quick CSS:
.menu-item-margin-top{ margin-top: 35px; }Regards,
JosueJanuary 15, 2015 at 2:54 am in reply to: I want to change the font size of single post titles #379846Hi!
Code works but it’s not getting applied because of this in your Quick CSS:
@media only screen and (max-width: 768px) }Regards,
JosueHi!
Use this instead:
.page-id-368 .avia-section.avia-builder-el-last, .page-id-368 #after_section_1 { display: none; }Regards,
JosueHi!
Try with this code instead:
.avia-section.avia-builder-el-last { display: none; }Cheers!
JosueSure, let us know :)
Regards,
JosueHey!
If all your customization were done via the Theme Settings you have nothing to worry about, just make sure to keep the same theme folder name when updating.
Cheers!
JosueHi,
Can you please create us a WordPress administrator account? post it here as a private reply.
Regards,
JosueHey!
Try adding this code to the Quick CSS:
@media only screen and (min-width: 480px) and (max-width: 767px) { .responsive #top #wrap_all .grid-sort-container .grid-entry { width: 50% !important; } }Cheers!
JosueYou are welcome, glad to help :)
Regards,
Josue -
AuthorPosts
