sunira
Forum Replies Created
-
Forum: Plugins
In reply to: [Block Gallery - Photo Gallery Gutenberg Blocks] Masonry Layout CollapsedThank you guys! It worked!
All my image folders are chmod’d to 755 and my images are 644. Will this cause an issue?
Forum: Themes and Templates
In reply to: Using Posts as PagesIn the part of the theme that gets the pages as links, you can manually edit the page links to point to specific full posts.
If you’re trying to make a page just a list of posts from a single category, then you can just make page links that direct to the category….
The like would need to go to https://www.yourwpinstall.com/category/yourcategory/
Did that answer your question?
Forum: Themes and Templates
In reply to: Using Posts as PagesIn the part of the theme that gets the pages as links, you can manually edit the page links to point to specific full posts.
If you’re trying to make a page just a list of posts from a single category, then you can just make page links that direct to the category….
The like would need to go to https://www.yourwpinstall.com/category/yourcategory/
Did that answer your question?
The code has been entered using the HTML version of the form. I’ve tried both nggallery and gallery as the quicktag. If you use the built in form insertion using the NextGEN gallery button during post edit, it automatically inserts nggallery=x instead of gallery=x but neither work.
I’ve put them both in now, to demonstrate that it doesn’t work. ??
Thanks for trying. Any other suggestions?
Forum: Themes and Templates
In reply to: Display content after More tagOh my god, thanks so much! I was pulling my hairs out a bit with this one.
Also, dOoBiX, the 11 is the number of characters the <–more–> quicktag is. MichaelH is starting his content substring after the more tag when he does that.
A small tweak would be to change the code as such:
$aftermore = 3 + strpos($post->post_content, ‘–>’);
echo ‘this is after the more >’ . substr($post->post_content,$aftermore);This way you can use custom more tags. Of course, this means no putting –>’s in your posts by themselves but most of us can live with that, I think. ??