Forum Replies Created

Viewing 30 posts - 61,531 through 61,560 (of 66,939 total)
  • Author
    Posts
  • in reply to: Add sidebar to bbPress #207840

    Hey!

    Please refer to this link: https://kriesi.at/support/topic/bbpres-no-sidebar-in-topics/

    Cheers!
    Ismael

    in reply to: Video doesn't display in Firefox #207837

    Hey!

    This is what I see on Firefox 26.0 Windows 8. On what browser and OS are you testing this with? What is the format of the videos that you used?

    Cheers!
    Ismael

    in reply to: Listing blog posts in alphabetical order #207836

    Hey 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,
    Ismael

    Hi!

    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,
    Ismael

    in reply to: Fullwidth slider buttons #207830

    Hi!

    Can you please give us a link to the actual page with the slider?

    Regards,
    Ismael

    in reply to: Problem with Fullscreen slider on computer browser only #207829

    Hi mtmfx!

    Good thing it works fine on actual device. :)

    Regards,
    Ismael

    Hey 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,
    Ismael

    Hi!

    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,
    Ismael

    in reply to: Two logo images – one for desktop site and one for mobile #207826

    Hey!

    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,
    Ismael

    in reply to: A few issues on Enfold #207825

    Hi 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,
    Ismael

    in reply to: Dealbreaker – that white space under the header #207824

    Hi 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,
    Ismael

    in reply to: Link hover color change not working on all links #207823

    Hi!

    You can use this:

    .main_color h5 span a:hover {
    color: blue !important;
    }

    Change the color value.

    Regards,
    Ismael

    in reply to: Remove Blog Title Bar & Breadcrumbs #207822

    Hi!

    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,
    Ismael

    in reply to: Layer Slider update #207821

    Hi 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,
    Ismael

    in reply to: Fullwidth slider buttons #207543

    Hi!

    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!
    Ismael

    in reply to: recommendation for best Map Plugin for Enfold #207536

    Hey!

    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,
    Ismael

    Hey 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,
    Ismael

    in reply to: Two requests (logo and font) #207533

    Hey 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!
    Ismael

    in reply to: Creating content that is included on each page #207528

    Hey 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,
    Ismael

    in reply to: Icon hover effect #207522

    Hi 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!
    Ismael

    in reply to: Add Floating Button, Remove Navigation Links #207293

    Hey 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,
    Ismael

    Hey!

    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,
    Ismael

    in reply to: Change the layout of portfolio #207285

    Hey!

    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,
    Ismael

    in reply to: Show "logged-in" status in header #207284

    Hey!

    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,
    Ismael

    in reply to: Mobile site not formatted correctly… #207281

    Hey!

    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!
    Ismael

    in reply to: Delete Widget Area Title? #207279

    Hey!

    Glad you figured it out. :)

    Regards,
    Ismael

    in reply to: Header resizing issues #207277

    Hey!

    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,
    Ismael

    in reply to: Enfold Theme: Advanced layerslider stopped displaying #207269

    Hi!

    The LayerSlider is working now. Please remove browser cache then reload the page a few times. Test it on another browser.

    Cheers!
    Ismael

    Hey!

    You can send it to ///. Please add the word “Kriesi” on the subject and the link of this thread on your email.

    Cheers!
    Ismael

    in reply to: Header resizing issues #207253

    Hey tusing!

    The space below he header is the main div padding. You can adjust it using this:

    .fixed_header.social_header #main {
    padding-top: 117px;
    }

    Please give us a link to the actual website.

    Cheers!
    Ismael

Viewing 30 posts - 61,531 through 61,560 (of 66,939 total)