-
AuthorPosts
-
January 16, 2015 at 10:33 pm #381118
Hello,
the posts in mobile doesnt show the sidebar under the content.. why?
January 17, 2015 at 5:44 pm #381270Hi Gal763!
Navigate to Dashboard > Enfold > Sidebar Settings and make sure the “Show sidebar on Smartphones” option is checked.
Best regards,
ElliottJanuary 18, 2015 at 7:24 am #381377This reply has been marked as private.January 19, 2015 at 8:37 am #381586January 19, 2015 at 9:55 am #381595Hey!
Please see – http://kriesi.at/documentation/enfold/replace-the-default-blog-latest-news-title/
Regards,
YigitJanuary 19, 2015 at 10:20 am #381616This reply has been marked as private.January 19, 2015 at 10:33 am #381618Hey!
Can you post the link to your page where we can see an example please?
Cheers!
YigitJanuary 19, 2015 at 10:48 am #381621This reply has been marked as private.January 19, 2015 at 10:49 am #381622This reply has been marked as private.January 19, 2015 at 3:48 pm #381840January 20, 2015 at 7:03 am #382283Hey!
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!
IsmaelJanuary 20, 2015 at 8:35 am #382315This reply has been marked as private.January 20, 2015 at 12:22 pm #382395This reply has been marked as private.January 20, 2015 at 2:13 pm #382431Hi!
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!
YigitJanuary 20, 2015 at 3:08 pm #382482This reply has been marked as private.January 21, 2015 at 11:37 am #382964This reply has been marked as private.January 21, 2015 at 4:06 pm #383070Hi!
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!
YigitJanuary 21, 2015 at 4:34 pm #383099This reply has been marked as private.January 21, 2015 at 4:36 pm #383101This reply has been marked as private.January 22, 2015 at 11:20 am #383592Hi!
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!
IsmaelJanuary 22, 2015 at 1:04 pm #383643This reply has been marked as private.January 22, 2015 at 5:27 pm #383796Hey!
Please find “Permanent Link:” in the code Ismael posted and change it as needed.
Regards,
YigitJanuary 25, 2015 at 8:15 am #385059This reply has been marked as private.January 26, 2015 at 10:00 am #385316This reply has been marked as private.January 26, 2015 at 5:08 pm #385591Hi!
Please go to functions-enfold.php file and change “permanent link” there
Cheers!
YigitJanuary 26, 2015 at 10:57 pm #385908This reply has been marked as private.January 26, 2015 at 10:59 pm #385910This reply has been marked as private.January 26, 2015 at 11:00 pm #385913This reply has been marked as private.January 27, 2015 at 11:20 am #386128This reply has been marked as private.January 27, 2015 at 3:04 pm #386253 -
AuthorPosts
- The topic ‘Posts sidebar’ is closed to new replies.