rtfrisk
Forum Replies Created
Viewing 5 replies - 1 through 5 (of 5 total)
-
Thank you so much!
Forum: Plugins
In reply to: [WP2Social Auto Publish] Posts not visible on FB Page unless logged inI feel rather silly — All I had to do was take the App out of dev mode and into public. Long day ??
- This reply was modified 7 years, 5 months ago by rtfrisk.
Forum: Plugins
In reply to: [WP2Social Auto Publish] Posts not visible on FB Page unless logged in@cosmicsake Did you ever get this problem figured out? Having the same issue and by all accounts it would seem my account is setup to post publicly with no problems.
Changed
if ( $from_post_body ) { // Theme does not support post-thumbnails, or post does not have assigned thumbnail $debug .= 'Getting image from post body;'; $wud = wp_upload_dir(); preg_match_all( '|<img.*?src=[\'"](' . $wud['baseurl'] . '.*?)[\'"].*?>|i', $post->post_content, $matches ); // searching for the first uploaded image in text
to
if ( $from_post_body ) { // Theme does not support post-thumbnails, or post does not have assigned thumbnail $debug .= 'Skipping getting image from post body and falling back to default;'; $url = get_option( 'relpoststh_default_image', $this->default_image );
in wp-content/plugins/related-posts-thumbnails/related-posts-thumbnails.php – line 314.
Forum: Plugins
In reply to: [Posts in Page] Missing ellipses at end of excerptNot the most elegant solution, but one I am using in the interim. Tailored more to my page’s CSS but the gist is there.
a.more-link:before { content: "..."; /*manually add ellipses between 'Continue reading' and excerpt main text padding-right: 5px; /*adds space between ellipses and 'Continue reading' color: #000; /*changes color of ellipses to match my <p> color - if <a> is different color }
Viewing 5 replies - 1 through 5 (of 5 total)