humanfiles
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Change “Logged in as {name}” TextThat worked perfectly. Thank you!
I searched everywhere for that solution. Hopefully this helps someone else.
Hello?
So what do you think?
But can it be accomplished with shortcodes?
https://codepen.io/dimsemenov/pen/gbadPv
Here’s an example of photoswipe opening by button. The gallery is open by default when going to this link. If you close it, you’ll see the Open Photoswipe button. My knowledge of developing is limited, so I’m only working from plugins.
I switched to yours, thinking I may more easily accomplish this. I noticed you use shortcodes. Switching to text view in a post or page, is there anything I could add to the shortcode to have the gallery launch from a link, and hide the gallery?
I fixed it with advice from Organic Themes support by removing this from a file called shortcodes.php…
remove_filter( ‘the_content’, ‘wpautop’ );
add_filter( ‘the_content’, ‘wpautop’ , 99);
add_filter( ‘the_content’, ‘shortcode_unautop’, 100 );Forum: Themes and Templates
In reply to: Move post title to top of post and format textThe solution to this problem is so easy it will make you crazy. Where you edit a post, in the sidebar there is “Format”. If you’ve accidentally changed that to “Image”, the Title will appear at the bottom of the post. Change it back to “Standard”. At least this is the case with the Twenty Twelve theme.
Forum: Themes and Templates
In reply to: Move post title to top of post and format textrileybetka,
I was wondering if you found a solution to this problem. On one of my sites, the title of the posts has suddenly moved to the bottom of the post, and I can’t figure out why. I had a content.php page in my child theme, and I deleted it as well, but nothing changed. I don’t think there’s anything in the CSS that would move the title from the top to the bottom.
Did you find a solution?