-
AuthorPosts
-
December 30, 2013 at 9:21 am #203637
I have set the blog page to not show Header/Footer and be a blank page. I would like to have this page look like the other pages.
eg: http://www.cindigofilm.de/?page_id=2913
shows an event page, that includes all Bog entries with the ‘event’ category. Now if I click on the Title of the blog entry I get redirected to a page 3323 that does not exists in my pages overview. That page shows a unwanted menu bar and the header/footer. If I click on the Blog link in the header I get to page 731. That page is listed in my page overview and I have set it to be a blank page and not show header/footer. But it does anyhow. The things I have set in this page (like my custom menu bar slider) don’t show.
What I would like is to have a blank page and no header/footer to be able to show my page the way the other pages are designed.
Any idea how to fix this?
kind regards,
PhilipDecember 30, 2013 at 9:23 am #203640This reply has been marked as private.December 30, 2013 at 10:18 am #203647Hi!
The single posts do not support the “Blank” page template because they do not support the template/layout builder. You can only use the Header Settings and “Footer Settings” to hide the title bar and footer section. A layout like here: http://www.cindigofilm.de/?page_id=2387 is not possible with single posts. Actually the “Blank page” layout was never intended to be used that way but it’s just a tool to create a “coming soon” page like demonstrated here: http://kriesi.at/themes/enfold/pages/blank/ or here: http://kriesi.at/themes/enfold/pages/blank/maintenance-mode/ or here: http://kriesi.at/themes/enfold/pages/blank/coming-soon/
Best regards,
PeterDecember 30, 2013 at 11:17 am #203655bummer. So then I have to avoid people getting there. At least for now. How can I hide the category and author link in each post? If the wouldn’t who up the users could go there.
eg: http://www.cindigofilm.de/?page_id=3136Any Idea how to accomplish that?
lg PhilipDecember 30, 2013 at 12:28 pm #203671Hi!
Insert following code into the quick css field
.blog-categories.minor-meta, .blog-author.minor-meta, .text-sep.text-sep-cat, .text-sep.text-sep-date{ display: none !important; }
Cheers!
PeterDecember 30, 2013 at 12:56 pm #203680great. Then the last thing is the Link of the Header of a Blog Entry itself. Is there a way to have the Header still show, but without an aktive Link?
Cheers, PhilipPS: do you by any chance know of a Facebook Plugin that I could use to like/share e.g. one Blog-Post. Haven’t found anything. The ones I tried don’t share the content I would like to have shared (e.g. the page logo instead of the pic of the post).
December 30, 2013 at 1:41 pm #203687Hey!
If you want to remove the link add following code to the bottom of functions.php
add_filter('avf_title_args', 'fix_single_post_title', 10, 2); function fix_single_post_title($args,$id) { if (is_single()) $args['link'] = false; return $args; }
2) You can try this plugin: http://wordpress.org/plugins/simple-share-buttons-adder/
If the plugin doesn’t use the right content for the facebook share data I recommend to install http://wordpress.org/plugins/wordpress-seo/ and then you can use the “Social” tab/options: http://www.clipular.com/c/5678826713513984.png?k=2EpKGdnQl0mtbk_vvn_O5O2cfYY to specify some content for the social sharing services (description, image for facebook and google+, etc.)Best regards,
PeterDecember 30, 2013 at 3:16 pm #203710hmmm. not quite doing the trick.
eg http://www.cindigofilm.de/?page_id=2913
have pasted the function at the end of the function.php but it doesn’t seem to filter the link. If you klick on the header (Operndorf Schlingensief Cooperation) of the post there is still a link behind it.
lg Philip
December 30, 2013 at 6:59 pm #203807Hey!
Try adding this code to the Quick CSS:
.post-entry .post-title.entry-title a { pointer-events: none; }
Cheers!
JosueJanuary 2, 2014 at 1:48 pm #204476great. That did the trick. Thank you
-
AuthorPosts
- The topic ‘Single Blog View ignores the Page settings’ is closed to new replies.