Viewing 30 posts - 1 through 30 (of 40 total)
  • Author
    Posts
  • #381118

    Hello,

    the posts in mobile doesnt show the sidebar under the content.. why?

    #381270

    Hi Gal763!

    Navigate to Dashboard > Enfold > Sidebar Settings and make sure the “Show sidebar on Smartphones” option is checked.

    Best regards,
    Elliott

    #381377
    This reply has been marked as private.
    #381586

    ???

    #381595
    #381616
    This reply has been marked as private.
    #381618

    Hey!

    Can you post the link to your page where we can see an example please?

    Cheers!
    Yigit

    #381621
    This reply has been marked as private.
    #381622
    This reply has been marked as private.
    #381840

    UP

    #382283

    Hey!

    You need to add the code on functions.php. I’m sorry but it’s not possible to for the masonry element to start from right without major modification on the theme.

    Cheers!
    Ismael

    #382315
    This reply has been marked as private.
    #382395
    This reply has been marked as private.
    #382431

    Hi!

    Please go to Enfold/includes folder and open helper-post-format.php file and find

    $heading = is_singular() ? "h1" : "h2";

    and change it to

    $heading = "h2";

    Cheers!
    Yigit

    #382482
    This reply has been marked as private.
    #382964
    This reply has been marked as private.
    #383070

    Hi!

    If you would like to change the heading the H1, please change the code to following one

    $heading = "h1";

    It does work totally fine on my local installation

    Cheers!
    Yigit

    #383099
    This reply has been marked as private.
    #383101
    This reply has been marked as private.
    #383592

    Hi!

    Do you want to remove the title or just change the h1 tag to something else? You can change the post title heading tag to h2 with this on functions.php:

    function avia_default_title_filter($current_post)
    {
    	if(!empty($current_post['title']))
    	{
    		$heading = is_singular() ? "h2" : "h3";
    
    		$output  = "";
    		//$output .= "<{$heading} class='post-title entry-title ". avia_offset_class('meta', false). "'>";
    		$output .= "<{$heading} class='post-title entry-title' ".avia_markup_helper(array('context' => 'entry_title','echo'=>false)).">";
    		$output .= "	<a href='".get_permalink()."' rel='bookmark' title='". __('Permanent Link:','avia_framework')." ".$current_post['title']."'>".$current_post['title'];
    		$output .= "			<span class='post-format-icon minor-meta'></span>";
    		$output .= "	</a>";
    		$output .= "</{$heading}>";
    
    		$current_post['title'] = $output;
    	}
    
    	return $current_post;
    }

    Cheers!
    Ismael

    #383643
    This reply has been marked as private.
    #383796

    Hey!

    Please find “Permanent Link:” in the code Ismael posted and change it as needed.

    Regards,
    Yigit

    #385059
    This reply has been marked as private.
    #385316
    This reply has been marked as private.
    #385591

    Hi!

    Please go to functions-enfold.php file and change “permanent link” there

    Cheers!
    Yigit

    #385908
    This reply has been marked as private.
    #385910
    This reply has been marked as private.
    #385913
    This reply has been marked as private.
    #386128
    This reply has been marked as private.
    #386253

    Hey!

    Please use a child theme and copy the whole function from parent themes functions-enfold.php file to functions.php file of your child theme.
    I let Kriesi know about RTL issue on Masonry element.

    Regards,
    Yigit

Viewing 30 posts - 1 through 30 (of 40 total)
  • The topic ‘Posts sidebar’ is closed to new replies.