Forum Replies Created
-
AuthorPosts
-
Hey!
Please refer to this link: https://kriesi.at/support/topic/bbpres-no-sidebar-in-topics/
Cheers!
IsmaelHey motylanogha!
Edit config-templatebuilder > avia-shortcodes > blog.php, find this code on line 297:
$query = array( 'paged' => $page, 'posts_per_page' => $params['items'], 'offset' => $params['offset'], 'post__not_in' => (!empty($no_duplicates)) ? $avia_config['posts_on_current_page'] : array(), 'tax_query' => array( array( 'taxonomy' => $params['taxonomy'], 'field' => 'id', 'terms' => $terms, 'operator' => 'IN'))); } else { $query = array( 'paged'=> $page, 'posts_per_page' => $params['items'], 'offset' => $params['offset'], 'post__not_in' => (!empty($no_duplicates)) ? $avia_config['posts_on_current_page'] : array(), 'post_type' => $params['post_type']); }Replace it with:
$query = array( 'paged' => $page, 'posts_per_page' => $params['items'], 'orderby' => 'name', 'order' => 'ASC', 'offset' => $params['offset'], 'post__not_in' => (!empty($no_duplicates)) ? $avia_config['posts_on_current_page'] : array(), 'tax_query' => array( array( 'taxonomy' => $params['taxonomy'], 'field' => 'id', 'terms' => $terms, 'operator' => 'IN'))); } else { $query = array( 'paged'=> $page, 'posts_per_page' => $params['items'], 'orderby' => 'name', 'order' => 'ASC', 'offset' => $params['offset'], 'post__not_in' => (!empty($no_duplicates)) ? $avia_config['posts_on_current_page'] : array(), 'post_type' => $params['post_type']); }Refer to this link for more order parameters: http://codex.wordpress.org/Class_Reference/WP_Query#Order_.26_Orderby_Parameters
Best regards,
IsmaelJanuary 10, 2014 at 7:10 am in reply to: Portfolio permailnk change error on latest version **URGENT** #207833Hi!
The avia_flush_rewrites function is not required anymore. The avia_flush_rewrites code forced wp to rewrite the rules when the user saved the settings, the custom rewrite rules cause too much trouble especially with WPML. Dude created some new code which registers new permalink options on the Settings > Permalinks page. The user can only change the permalink structure on the wordpress settings.
Regards,
IsmaelHi!
Can you please give us a link to the actual page with the slider?
Regards,
IsmaelJanuary 10, 2014 at 7:02 am in reply to: Problem with Fullscreen slider on computer browser only #207829January 10, 2014 at 7:01 am in reply to: Chrunbee Integration / php implementation / javascript implementation #207828Hey Jordache!
This is way beyond of what we can do as support team. Please hire a freelance developer to help you with the Chrunbee Integration. You can visit http://werkpress.com/.
Regards,
IsmaelJanuary 10, 2014 at 6:57 am in reply to: sorting portfolio items : how to display categories in a different order ? #207827Hi!
Edit config-templatebuilder > avia-shortcodes > portfolio.php, find this code on line 442:
//get all categories that are actually listed on the page $categories = get_categories(array( 'taxonomy' => $params['taxonomy'], 'hide_empty'=> 0 ));Replace it with:
$categories = get_categories(array( 'taxonomy' => $params['taxonomy'], 'hide_empty'=> 0, 'orderby' => 'name', 'order' => 'DESC' ));Best regards,
IsmaelJanuary 10, 2014 at 6:53 am in reply to: Two logo images – one for desktop site and one for mobile #207826Hey!
You can add this on your Quick CSS or custom.css to change the background of the logo then remove the logo image on mobile device view:
@media only screen and (max-width: 767px) { .responsive .logo { background: url('http://heartland.estlandpreview2.com/wp-content/themes/heartland/images/logo_header_mobile.png') no-repeat; position: relative; top: 50px; left: 30px; } .responsive .logo img { margin: 0 auto; display: none; } }Best regards,
IsmaelHi flowpsychicarts!
1.) Yes, you can deselect the Blog on Theme Options > Where do you want to display Blog? then create a new page. Insert the Easy Slider then the Blog Posts element.
2.) We don’t have an access with the plugin, you might want to contact the plugin author. Please post the login details here as a private reply. We would like to inspect the website.
3.) You can adjust the left margin of the inner sidebar using this on your Quick CSS:
.inner_sidebar { margin-left: 20px; }Best regards,
IsmaelHi jodyannthomas!
What space? Can you please give us a link to the actual website? I guess it can be easily fix with css. Enfold 2.4.5 is available on the Theme Update, you might want to upgrade your installation.
Best regards,
IsmaelHi!
You can use this:
.main_color h5 span a:hover { color: blue !important; }Change the color value.
Regards,
IsmaelHi!
Have you tried using the Special Heading element? Can you please give us a link to the actual page where you’re trying to add the title?
Best regards,
IsmaelHi Tali!
Do you encounter any issue with the older version of Layer Slider? Kriesi is working on few other updates and may tackle the plugin improvement on future Enfold updates.
Regards,
IsmaelHi!
You can set a max height for the full screen slider using this on Quick CSS:
.avia-fullscreen-slider .avia-slideshow { max-height: 400px !important; }Cheers!
IsmaelHey!
We don’t have really have any access with the plugins and we don’t usually support third party plugins. We’re just trying to suggest some plugins that you can use. Maybe you can start with these free plugins:
http://wordpress.org/plugins/pronamic-google-maps/
http://wordpress.org/plugins/wp-google-maps/
http://wordpress.org/plugins/wp-google-map-plugin/Best regards,
IsmaelJanuary 9, 2014 at 5:52 pm in reply to: call to action button on layer slider doesn't display well on mobile #207535Hey Indiatravelz!
Add this on your custom.css or Quick CSS:
@media only screen and (max-width: 767px) { .avia-button.avia-size-large { padding: 5px 20px; } }Best regards,
IsmaelHey LinkedMediaGroup!
1.) Can you please give us a link to the website? You can add this on your custom.css or Quick to change the header height if you’re using the default header. This will also increase the size of the logo:
#header_main .container, .main_menu ul:first-child > li a{ height:128px; line-height: 128px; }2.) What is the font you’re trying to use? If it is a google font, you can add this filter on functions.php:
add_filter( 'avf_google_heading_font', 'avia_add_heading_font'); function avia_add_heading_font($fonts) { $fonts['Alef'] = 'Alef'; return $fonts; } add_filter( 'avf_google_content_font', 'avia_add_content_font'); function avia_add_content_font($fonts) { $fonts['Alef'] = 'Alef'; return $fonts; }Replace “Alef” with the google font you’re trying to use.
Cheers!
IsmaelHey Vada!
This is what you can do. Please switch your theme to debug mode. Edit function.php, find this code:
if(isset($avia_config['use_child_theme_functions_only'])) return;Below, add this code:
//set builder mode to debug add_action('avia_builder_mode', "builder_set_debug"); function builder_set_debug() { return "debug"; }You will be able to see the actual shortcode below the builder. Copy the shortcode that you want to place after each content.
Best regards,
IsmaelHi bloomfashion!
Can you please give us a link to the actual page? I’ll ask Yigit to look. Maybe the section id on the other page is not the same.
Cheers!
IsmaelHey nmillas!
1.) Please try these plugins:
http://wordpress.org/plugins/floating-menu/
http://wordpress.org/plugins/codeflavors-floating-menu/2.) There are header types that includes social icons. You can set it on Enfold > Header > Header Type.
3.) Please hire a freelance developer to add the pop up feature for you.
Best regards,
IsmaelJanuary 9, 2014 at 8:56 am in reply to: Main Menu Font Color in Mobile Version Didn't Change with CSS #207289Hey!
You can change the background color of the mobile menu select using this:
#top .header_color select { border-color: blue; background-color: red; color: #155773; }Change the arrow select using this:
#top .mobileMenu{ background-image: url(IMAGE URL HERE); background-position: center right; background-repeat: no-repeat; border-radius: 2px; }Create your own image. The size should be 30x13px.
Best regards,
IsmaelHey!
It will require major modifications with the theme and is beyond the of what we can do as support team. Please hire a freelance developer if you want that kind of portfolio layout. You can visit http://werkpress.com/ for wordpress modifications.
Regards,
IsmaelHey!
Edit header.php, find this code on line 116:
$nav = wp_nav_menu($args); echo $nav;Below, add this code:
if ( is_user_logged_in() ) { $user = wp_get_current_user(); echo "<div id='header-welcome'>Welcome ". $user->display_name ."</div>"; }Add this on Quick CSS or custom.css:
#header-welcome { float: left; font-weight: bold; height: 30px; line-height: 10px; margin-left: 20px; }Best regards,
IsmaelHey!
You can add this on your custom.css or Quick CSS to move the caption more to the right:
@media only screen and (max-width: 479px) { .responsive #top .slideshow_caption { left: 150px; } }Cheers!
IsmaelHey!
If you have this code on Quick CSS:
#header_main .container, .main_menu ul:first-child > li a, .logo img, .logo a { height: 90px !important; line-height: 90px !important; max-height: none !important; }Please replace it with:
.logo img, .logo a { height: 90px !important; line-height: 90px !important; max-height: none !important; }Replace the code that I gave you with:
.fixed_header.social_header #main { padding-top: 111px; }Remove the title using this:
#top .alternate_color.title_container .main-title { display: none; }Adjust the breadcrumb container height using this:
#top .title_container .container { padding: 10px 0; min-height: 30px; }Best regards,
IsmaelJanuary 9, 2014 at 8:19 am in reply to: Enfold Theme: Advanced layerslider stopped displaying #207269January 9, 2014 at 8:09 am in reply to: LayerSlider – how to make only one of several videos auto play #207266Hey!
You can send it to ///. Please add the word “Kriesi” on the subject and the link of this thread on your email.
Cheers!
Ismael -
AuthorPosts


