Viewing 14 results - 1 through 14 (of 14 total)
  • Author
    Search Results
  • Hi Ismael, sorry for the late reply but I was ways the whole week.
    I did two attempts following your suggestions, but didn’t work. Here the code for each one.
    First of all I created a blog page where the standard post should be visible, and I set the child theme options for blog layout as a list (that’s how I want to see my standard post). Now the idea is that if I select a specific term taxonomy from the custom type posts (projects) I want them shown in a grid format.
    Here my two attempts to do it.

    ATTEMPT 1
    I used the is_post_type_archive function within the archive-project.php, simplifying it for my purposes:

     //above there's the code for handling the header, which I didn't change
    		<div class='container_wrap container_wrap_first main_color <?php avia_layout_class( 'main' ); ?>'>
    			<div class='container template-blog '>
    				<main class='content <?php avia_layout_class( 'content' ); ?> units' <?php avia_markup_helper(array('context' => 'content','post_type'=>'post'));?>>
    					<?php 
    						$tds =  term_description(); 
    						if($tds)
    						{
    							echo "<div class='category-term-description'>{$tds}</div>";
    						}
    					?>
                        <?php
                        if ( is_post_type_archive( 'projects' ) ) {
              				global $posts;
                            $post_ids = array();
                            foreach($posts as $post) $post_ids[] = $post->ID;
                            if(!empty($post_ids))
                            {
                                $atts   = array(
                                    'type' => 'grid',
                                    'items' => get_option('posts_per_page'),
                                    'columns' => 5,
                                    'class' => 'avia-builder-el-no-sibling',
                                    'paginate' => 'yes',
                                    'use_main_query_pagination' => 'yes',
                                    'custom_query' => array( 'post__in'=>$post_ids, 'post_type'=>get_post_types() )
                                );
    							/**
    							 * @since 4.5.5
    							 * @return array
    							 */
    							$atts = apply_filters( 'avf_post_slider_args', $atts, 'archive' );
                                $blog = new avia_post_slider( $atts );
                                $blog->query_entries();
                                echo "<div class='entry-content-wrapper'>".$blog->html()."</div>";
        					}
                       
                        ?>
    				<!--end content-->
    				</main>

    ATTEMPT 2
    I still have an archive-projects.php which is the exact copy of archive.php
    I added to my functions.php the following code:

    add_filter('avf_blog_style','avia_change_category_blog_layout_2', 10, 2); 
    function avia_change_category_blog_layout_2($layout, $context){
    if($context == 'archive-projects') $layout = 'blog-grid';
    return $layout;
    }

    In all 2 attempts, the blog layout (list) set in the child theme options overwrites the codes for the archive-projects.php. So if I click on a term taxonomy of the custom type posts, they appear as a list, like the blog page instead of appearing as a grid.
    Could you help me please?

    • This reply was modified 4 years, 5 months ago by elenapoliti.
    CharlieTh
    Participant

    I was looking at “Creating and using a different sidebar” in this:
    https://kriesi.at/support/search/?bbp_search=change+the+grid+units+in+the+functions.php+

    It gives instructions on how to put this code in functions.php, but I have further questions:

    1. Is it the same situation in Enfold in 2020 as it was in 2014?

    2. If we only want the widening of the sidebar for mobile, is there any way to indicate that within functions.php code?
    if media query is < 767px etc.???

    3. I presume CSS is still out of the question? If not, can you tell me what I should try?

    Thanks for any direction you can give me.

    Seems like a rather popular question.

    #750245

    an update on this as I use AdSense on a blog http://www.bigboytravel.com with Enfold which gets 600,000 monthly visitors and it works great.

    I also recommend using a series of shortcodes for your add units which you can customize on the backend functions.php quickly to change them site wide. There have been times where new versions of WordPress have blocked AdSense script and without custom shortcodes I would have had a headache.

    float right in text example with custom shortcode of wp_ad_camp_1/

    function tall_r_shortcode() {
    ?>
       <div style=" float: right; margin: 5px; ">
       <script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
       <!-- 300x600 Content -->
       <ins class="adsbygoogle"
           style="display:inline-block;width:300px;height:600px"
           data-ad-client="ca-pub-3xxxxxxxxxxxxxx"
           data-ad-slot="xxxxxxxx2"></ins>
       <script>
       (adsbygoogle = window.adsbygoogle || []).push({});
       </script>
       </div>
    <?php
    }
    add_shortcode('wp_ad_camp_1', 'tall_r_shortcode');

    can center a variation easy also

    function medium_m_shortcode() {
    ?>
       <center><script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
       <!-- 336x280 Content -->
       <ins class="adsbygoogle"
           style="display: block; float: center; width: 336px; height: 280px;"
           data-ad-client="ca-pub-3xxxxxxxxxxx"
           data-ad-slot="xxxxxxxxxx4"></ins>
       <script>
       (adsbygoogle = window.adsbygoogle || []).push({});
       </script></center>
    <?php
    }
    add_shortcode('wp_ad_camp_5', 'medium_m_shortcode');

    Keep in mind that if the code code is meant to by used at html or script you must open it with ?> and close it with <?php inside the function. If it is just live text fo some reason you don’t need to do that.

    Also a worth noting that doing short codes this way forces the Ad Unit to the top of the container it sits in although it does maintain it’s float, alignment, and padding. That means if you have a long article and want multiple Ads you need to break the page/content into multiple Color Sections or Grid Rows to avoid having all the Ads push to the top of the page. It’ll make sense when you try it, but is an easy fix.

    Hope that helps others
    Jon

    #489163
    thelistener
    Participant

    Hi there!
    I found this code in another thread about setting a character limit on excerpts and added it to functions.php:

    /*
    * add_filter('avf_postgrid_excerpt_length','avia_change_postgrid_excerpt_length', 10, 1);
    function avia_change_postgrid_excerpt_length($length)
    {
       $length = 100;
       return $length;
    }

    However, when you go to the following pages, you’ll notice the excerpt length is a LOT less than 300 characters.

    Page 1
    Page 2
    Page 3

    EXCEPT on this page where the length of the excerpt can be short or very long:
    Page 4

    Any ideas on where I went wrong?

    • This topic was modified 9 years, 7 months ago by thelistener.
    #437378

    Topic: Changing sidebar width

    in forum Enfold
    erikvermeulen
    Participant

    Hi Rob,

    Instead of using the above css and then having to adjust the whole grid, go to your functions.php file in the theme files and look for:

    $avia_config[‘layout’][‘fullsize’] = array(‘content’ => ‘twelve alpha’, ‘sidebar’ => ‘hidden’, ‘meta’ => ‘two alpha’, ‘entry’ => ‘eleven’);
    $avia_config[‘layout’][‘sidebar_left’] = array(‘content’ => ‘nine’, ‘sidebar’ => ‘three alpha’ ,’meta’ => ‘two alpha’, ‘entry’ => ‘nine’);
    $avia_config[‘layout’][‘sidebar_right’] = array(‘content’ => ‘nine alpha’, ‘sidebar’ => ‘three alpha’, ‘meta’ => ‘two alpha’, ‘entry’ => ‘nine alpha’);
    You can define your own values for the sidebar_left and sidebar_right. So instead of “nine” grid units for the content and “three” for the sidebar you could change it to be “ten” and “two” which would give you a bigger content and smaller sidebar.

    Regards,

    Devin

    I found the post (see above) but I’m not sure how to implement it because the code does not look the same as it does in my functions.php. Can you help me? I want to make the widgetbar on the right smaller.

    #292608

    In reply to: Sizing of Sidebar

    Hey alphateddy!

    By default the content is part of a 12 column grid. The main content is 9 and the sidebar is 3.

    You can change the grid units in the functions.php file. Look for:

    
    /*
     * register the layout sizes: the written number represents the grid size, if the elemnt should not have a left margin add "alpha"
     *
     * Calculation of the with: the layout is based on a twelve column grid system, so content + sidebar must equal twelve.
     * example:  'content' => 'nine alpha',  'sidebar' => 'three'
     *
     * if the theme uses fancy blog layouts ( meta data beside the content for example) use the meta and entry values.
     * calculation of those: meta + entry = content
     *
     */
    
    $avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    $avia_config['layout']['sidebar_left'] 	= array('content' => 'nine', 		 'sidebar' => 'three alpha' ,'meta' => 'two alpha', 'entry' => 'nine');
    $avia_config['layout']['sidebar_right'] = array('content' => 'nine alpha',   'sidebar' => 'three alpha', 'meta' => 'two alpha', 'entry' => 'nine alpha');
    
    

    And then edit as needed.

    Best regards,
    Devin

    #282286

    Hey!

    1) There’s no setting for the sidebar/content width. You can use the code Ismael posted here: https://kriesi.at/support/topic/creating-and-using-a-different-sidebar/#post-282111 to change the sidebar width. If you want to change it again you need to edit the code. You can place the code into the functions.php file (child theme functions.php or enfold/functions.php).

    2)

    
    function avia_increase_sidebar_size() {
    	global $avia_config;
    	
    	$avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    	$avia_config['layout']['sidebar_left'] 	= array('content' => 'eight', 		 'sidebar' => 'four alpha' ,'meta' => 'three alpha', 'entry' => 'eight');
    	$avia_config['layout']['sidebar_right'] = array('content' => 'eight alpha',   'sidebar' => 'four alpha', 'meta' => 'three alpha', 'entry' => 'eight alpha');
    }
    add_action( 'init', 'avia_increase_sidebar_size', 1);
    

    To change the sidebar size you need to replace “eight” and “four” with a different value. I.e. change “eight” to “nine” and “four” to “three” to decrease the width of the sidebar. You can also replace “eight” with “seven” and “four” with “five” to increase the width of the sidebar. Note that you must not exceed the width of “twelve” units because our css grid just supports twelve units in one row. If you want to change the sidebar size for a certain post type only add a post type check to the function like:

    
    function avia_increase_sidebar_size() {
    	global $avia_config;
    	if(get_post_type() != "mycpt") return;
    
    	$avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    	$avia_config['layout']['sidebar_left'] 	= array('content' => 'eight', 		 'sidebar' => 'four alpha' ,'meta' => 'three alpha', 'entry' => 'eight');
    	$avia_config['layout']['sidebar_right'] = array('content' => 'eight alpha',   'sidebar' => 'four alpha', 'meta' => 'three alpha', 'entry' => 'eight alpha');
    }
    add_action( 'init', 'avia_increase_sidebar_size', 1);
    

    and replace “mycpt” with your post type.

    3) By default Enfold supports the layout options only for posts and pages because you must create a custom template (i.e. based on page.php and loop-page.php or single.php and loop-index.php) to use the layouts with another post type. Then you can use this code:

    
    add_filter('avf_builder_boxes','custom_post_types_options');
    function custom_post_types_options($boxes)
    {
    	$boxes[1]['page'][] = 'mycpt';
    	return $boxes;
    }
    

    to add the layout options to the cpt editor screen. Probably these options won’t work properly if you do not use a cpt template based on page.php and loop-page.php or single.php and loop-index.php…

    Regards,
    Peter

    #279282

    Hi!

    is there a solution to change the size of right sidebar???

    Yes, insert this code into the child theme functions.php file or enfold/functions.php:

    
    function avia_increase_sidebar_size() {
    	global $avia_config;
    	
    	$avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    	$avia_config['layout']['sidebar_left'] 	= array('content' => 'eight', 		 'sidebar' => 'four alpha' ,'meta' => 'three alpha', 'entry' => 'eight');
    	$avia_config['layout']['sidebar_right'] = array('content' => 'eight alpha',   'sidebar' => 'four alpha', 'meta' => 'three alpha', 'entry' => 'eight alpha');
    }
    add_action( 'init', 'avia_increase_sidebar_size', 1);
    

    To change the sidebar size you need to replace “eight” and “four” with a different value. I.e. change “eight” to “nine” and “four” to “three” to decrease the width of the sidebar. You can also replace “eight” with “seven” and “four” with “five” to increase the width. Note that you must not exceed the width of “twelve” units because our css grid just supports twelve units in one row.

    Regards,
    Peter

    #262720

    In reply to: sidebar size

    Hi!

    Thank you all for using the theme!

    On functions.php, you can change the allotted grid units for the content and the sidebar, find this code on line 153:

    $avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    $avia_config['layout']['sidebar_left'] 	= array('content' => 'nine', 		 'sidebar' => 'three alpha' ,'meta' => 'two alpha', 'entry' => 'nine');
    $avia_config['layout']['sidebar_right'] = array('content' => 'nine alpha',   'sidebar' => 'three alpha', 'meta' => 'two alpha', 'entry' => 'nine alpha');

    Decrease the content units to eight then increase the sidebar width to four:

    $avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    $avia_config['layout']['sidebar_left'] 	= array('content' => 'eight', 		 'sidebar' => 'four alpha' ,'meta' => 'three alpha', 'entry' => 'eight');
    $avia_config['layout']['sidebar_right'] = array('content' => 'eight alpha',   'sidebar' => 'four alpha', 'meta' => 'three alpha', 'entry' => 'eight alpha');

    Regards,
    Ismael

    #262251

    In reply to: Changing sidebar width

    Hi!

    Thank you all for using the theme!

    On functions.php, you can change the alotted grid units for the content and the sidebar, find this code on line 153:

    $avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    $avia_config['layout']['sidebar_left'] 	= array('content' => 'nine', 		 'sidebar' => 'three alpha' ,'meta' => 'two alpha', 'entry' => 'nine');
    $avia_config['layout']['sidebar_right'] = array('content' => 'nine alpha',   'sidebar' => 'three alpha', 'meta' => 'two alpha', 'entry' => 'nine alpha');

    Decrease the content units to eight then increase the sidebar width to four.

    $avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    $avia_config['layout']['sidebar_left'] 	= array('content' => 'eight', 		 'sidebar' => 'four alpha' ,'meta' => 'three alpha', 'entry' => 'eight');
    $avia_config['layout']['sidebar_right'] = array('content' => 'eight alpha',   'sidebar' => 'four alpha', 'meta' => 'three alpha', 'entry' => 'eight alpha');

    Regards,
    Ismael

    #168028

    In reply to: 3 bbpress questions

    Hi stunna42!

    1) In functions-enfold.php replace

    
    if($breadcrumb) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
    

    with

    
    if($breadcrumb && is_bbpress()) $additions .= avia_breadcrumbs(array('separator' => '/', 'richsnippet' => true));
    

    2) Use following css code:

    
    #top .main_color .bbp-body p{
    color: #333;
    }
    
    #bbpress-forums div.bbp-the-content-wrapper textarea.bbp-the-content {
    color: #333;
    }
    

    The first rule will change the text color of the posts and the second rule will change the editor text color.

    3) In functions.php search for

    
    $avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    $avia_config['layout']['sidebar_left'] 	= array('content' => 'nine', 		 'sidebar' => 'three alpha' ,'meta' => 'two alpha', 'entry' => 'nine');
    $avia_config['layout']['sidebar_right'] = array('content' => 'nine alpha',   'sidebar' => 'three alpha', 'meta' => 'two alpha', 'entry' => 'nine alpha');
    

    and replace it with

    
    $avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    $avia_config['layout']['sidebar_left'] 	= array('content' => 'nine', 		 'sidebar' => 'three alpha' ,'meta' => 'two alpha', 'entry' => 'nine');
    $avia_config['layout']['sidebar_right'] = array('content' => 'nine alpha',   'sidebar' => 'three alpha', 'meta' => 'two alpha', 'entry' => 'nine alpha');
    
    if(is_bbpress())
    {
    $avia_config['layout']['sidebar_right'] = array('content' => 'ten alpha',   'sidebar' => 'two alpha', 'meta' => 'two alpha', 'entry' => 'ten alpha');
    }
    

    Now the sidebar uses two units of the 12 units grid (instead of 3) and the content will use 10 units instead of 9.

    Regards,
    Peter

    #138801

    Hi Rob,

    Instead of using the above css and then having to adjust the whole grid, go to your functions.php file in the theme files and look for:

    $avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    $avia_config['layout']['sidebar_left'] = array('content' => 'nine', 'sidebar' => 'three alpha' ,'meta' => 'two alpha', 'entry' => 'nine');
    $avia_config['layout']['sidebar_right'] = array('content' => 'nine alpha', 'sidebar' => 'three alpha', 'meta' => 'two alpha', 'entry' => 'nine alpha');

    You can define your own values for the sidebar_left and sidebar_right. So instead of “nine” grid units for the content and “three” for the sidebar you could change it to be “ten” and “two” which would give you a bigger content and smaller sidebar.

    Regards,

    Devin

    #136314

    In reply to: sidebar

    Tbh I wouldn’t use css to change the sidebar width but I’d suggest to change the container units. Open up functions.php and search for

    $avia_config['layout']['sidebar_left'] 	= array('content' => 'nine', 		 'sidebar' => 'three alpha' ,'meta' => 'two alpha', 'entry' => 'nine');
    $avia_config['layout']['sidebar_right'] = array('content' => 'nine alpha', 'sidebar' => 'three alpha', 'meta' => 'two alpha', 'entry' => 'nine alpha');

    You’ll nptice that the sidebar parameter is set to ‘three alpha’ which means that the sidebar width is set to 3 units (based on a 12 grid layout). You can replace “three” with “two” or “four” to increase or decrease the sidebar width. If you set it to “two” you’ll have one unit left. Use it to increase the content width and replace “nine” with “ten”.

    #118282

    In reply to: Right Sidebar width

    Unfortunately it’s not easily possible to shrink or expand the sidebar to a certain width – this would break the responsive layout. However you can change the grid units in functions.php – search for:

    $avia_config['layout']['fullsize'] 		= array('content' => 'twelve alpha', 'sidebar' => 'hidden', 	 'meta' => 'two alpha', 'entry' => 'eleven');
    $avia_config['layout']['sidebar_left'] = array('content' => 'nine', 'sidebar' => 'three alpha' ,'meta' => 'two alpha', 'entry' => 'nine');
    $avia_config['layout']['sidebar_right'] = array('content' => 'nine alpha', 'sidebar' => 'three alpha', 'meta' => 'two alpha', 'entry' => 'nine alpha');

    If you want to expand the sidebar width replace “nine” with i.e. “eight” and “three” with “four”. This code change will expand the sidebar (+1 unit) and it will shrink the content area (-1 unit).

Viewing 14 results - 1 through 14 (of 14 total)