Forum Replies Created
-
AuthorPosts
-
August 15, 2014 at 7:08 pm in reply to: Insert search button and widget area in the secondary menu bar #305041
Hey Cerasela!
I’m seeing the switcher on all pages, try refreshing a few items. I think it needs some CSS adjustments though, add this:
.phone-info select { margin: 0 !important; } .phone-info .widget_qtranslate { padding: 0 !important; }Best regards,
JosueHey!
That worked out for me on my local install, can you post a link to your website? an admin account would be helpful too.
Cheers!
JosueAugust 15, 2014 at 7:02 pm in reply to: Fullwidth slider above a full screen gallery NOT WORKING #305036Hey Steven!
The screenshot you posted are not working (404 error).
Regarding the other question, the slider is seems centered to me, perhaps you want to push it a little bit down:
#av_section_1 .content { top: 25px; position: relative; }Best regards,
JosueHi Christian!
Refer to this article:
http://kriesi.at/documentation/enfold/change-icon-used-for-standard-theme-elements/For example, to change the scroll to top icon:
add_filter('avf_default_icons','avia_replace_standard_icon', 10, 1); function avia_replace_standard_icon($icons) { $icons['scrolltop'] = array( 'font' =>'entypo-fontello', 'icon' => 'ue915'); return $icons; }You can see the full list of default icons in functions.php, around line 150.
Best regards,
JosueYou are welcome, always glad to help :)
Regards,
JosueHey!
Can you post a link to the website where you are trying it?
Best regards,
JosueYou are welcome, always glad to help :)
Regards,
JosueHi Carine,
I tested that and it does work on my end, can you please create me an administrator account? post it here as a private reply.
Regards,
JosueHi!
That’s the “Display Everywhere” widget area, you should empty it if you don’t want it to be displayed everywhere.
Regards,
JosueHey Carine!
Are you using a child theme? if you are not, install this plugin to store this function separately from the parent theme.
Regards,
JosueHi Alain!
Yes, it is still recommended, updating from the WP backend doesn’t replace the purpose of a Child Theme, which is to have a way to modify the theme functionalities without affecting the parent theme.
Best regards,
JosueHey!
Try adding this at the very end of your theme / child theme functions.php file:
add_theme_support('add_avia_builder_post_type_option'); add_filter('avf_builder_boxes','enable_boxes_on_posts'); function enable_boxes_on_posts($boxes) { $boxes[] = array( 'title' =>__('Avia Layout Builder','avia_framework' ), 'id'=>'avia_builder', 'page'=>array('page','post', 'portfolio'), 'context'=>'normal', 'expandable'=>true ); $boxes[] = array( 'title' =>__('Layout','avia_framework' ), 'id'=>'layout', 'page'=>array('page','post', 'portfolio'), 'context'=>'side', 'priority'=>'low'); $boxes[] = array( 'title' =>__('Additional Portfolio Settings','avia_framework' ), 'id'=>'preview', 'page'=>array('page','post','portfolio'), 'context'=>'normal', 'priority'=>'high' ); return $boxes; }Cheers!
JosueAugust 15, 2014 at 5:38 am in reply to: Problem with Fullwidth Slider when using slide that includes text #304720Hi!
Use this plugin to modify the existing image sizes or create new ones. Don’t forget to regenerate the thumbnails after that.
Best regards,
JosueAugust 15, 2014 at 5:36 am in reply to: Adjusting number of items in grid layout at category and label blog pages #304719Hey Raúl!
One solution could be to have different tags (gestión-documental-posts – gestión-documental-portfolio) for Posts and Portfolio items.
Also, you could try the following, open tag.php and look for line 71:
'custom_query' => array( 'post__in'=>$post_ids, 'post_type'=> $key )Change it to:
'custom_query' => array( 'post__in'=>$post_ids, 'post_type'=> $key, 'posts_per_page' => 12)Replace 12 by the maximum number of posts you want to show per post type on the tag page.
Regards,
Josue-
This reply was modified 11 years, 8 months ago by
Josue.
Hi!
The sidebar isn’t appearing because there is a fullwidth element present on that Page (the map), however, as a workaround you can use the Widget element – http://screencast.com/t/qSiGhfwZZ
Cheers!
JosueHey!
Try adding this code to the Quick CSS:
.avia-testimonial-content { width: 100%; } .avia-testimonial-meta { margin: 0; }Cheers!
JosueHey Christian!
For the logo issue, try adding this code to the Quick CSS:
@media only screen and (max-width: 767px) { .responsive #top #header .logo img{ max-height: 73px !important; height: 73px !important; top: 5px; } }Regarding altering the color section padding:
#colorsectionid .content{ padding: 20px 0 !important; }If you want to change the height you’d need to set a fixed value, like:
#colorsectionid{ min-height: 400px; }If you use a Child Theme on an already created site you can use the Import Parent Theme settings button (Enfold > Import/Export) to avoid building it again.
Cheers!
JosueHi Jamie A!
Can you post a link to one of your posts?
Regards,
JosueAugust 15, 2014 at 4:48 am in reply to: Insert search button and widget area in the secondary menu bar #304697Hi,
1. Open /includes/helper-main-menu.php and look for line 68:
if($phone) { echo "<div class='phone-info {$phone_class}'><span>{$phone}</span></div>"; }2. Replace it by this:
if($phone) { echo "<div class='phone-info {$phone_class}'><span>".do_shortcode($phone)."</span></div>"; }3. Then install this plugin: Widget Shortcode.
4. Go to Appareance > Widgets and look for the qTranslate specific shortcode:

5. Finally paste the shortcode here:

Regards,
JosueAugust 15, 2014 at 4:29 am in reply to: For pages with small content,the footer background increases to filled height #304689Hey!
Can you post a screenshot/mockup of what would you want to achieve?
Best regards,
JosueAugust 15, 2014 at 3:55 am in reply to: Fullwidth slider above a full screen gallery NOT WORKING #304681Hey Steven!
1. They look centered to me, do you mean vertically centered?
2. Can you post a screenshot of this? i don’t know exactly what you mean.
3. Try adding this to Quick CSS:
.avia-slideshow-inner li:after{ content: ""; position: absolute; width: 100%; height: 100%; top: 0; background: white; opacity: 1; transition: opacity 0.2s linear; -webkit-transition: opacity 0.2s linear; -moz-transition: opacity 0.2s linear; } .avia-slideshow-inner li.active-slide:after{ opacity: 0; }Regards,
JosueYou are welcome, always glad to help :)
Regards,
JosueYou are welcome, always glad to help :)
Regards,
JosueAugust 15, 2014 at 1:00 am in reply to: blog post with custom full width slider image will not change on post pages #304656Hi!
If i’m not mistaken that slider on single pages was added using a hook, check your code in your child functions.php and update it accordingly.
Best regards,
JosueHi Ben!
Try the following:
1. Install and activate this plugin.
2. Go to Settings > Media and change the Portfolio image size to this (width: 218, height: 168, cropping: yes):

3. Regenerate the thumbnails.Regards,
JosueHi,
Can you please create me an administrator account? post it here as a private reply.
Regards,
JosueYou are welcome, always glad to help :)
Regards,
JosueAugust 14, 2014 at 11:59 pm in reply to: Colour Section and resizing issues in IE & Firefox – Please Help #304632Hi!
For the color section, the issue seems to be fixed now, here’s how it looks for me on Firefox (resized) – http://screencast.com/t/ciSbCy1F0
Cheers!
JosueHey!
The login details you posted are not working.
Regards,
JosueHey!
I’m not seeing any border on my end:
http://screencast.com/t/4ipbFSl6uCan you post a screenshot of your view?
Cheers!
Josue -
This reply was modified 11 years, 8 months ago by
-
AuthorPosts
