nitetalker
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: [Plugin: eShop] PayPal return URL?So if I’ve previously set the return URL in my PayPal account (in an attempt to work with another plugin) should I blank it out? Or does it not make any difference because eShop overrides it?
Forum: Fixing WordPress
In reply to: [Plugin: eShop] PayPal return URL?Damn. Sorry about posting this in the wrong forum …
Forum: Plugins
In reply to: [Plugin: Are PayPal] I found a bug in the latest versionI want to use this with WordPress MU (WPMU) as well. No luck so far.
In the Post Prices panel, I see “No Posts Found” but the blog on which I’ve activated the Are_PayPal does have posts.
At the bottom of the Are_PayPal panel, the URLTEXT link target is https://<domain.tld>/wpmu/<blogname>/wp-admin/URL. That is not a valid URL.
Where are the instructions for using the templates?
My guess is this plugin is not compatible with WPMU but I don’t have the technical expertise to isolate the incompatibility.
Forum: Themes and Templates
In reply to: Comments – First PageJoe, this is happening because of these lines in wp-includes\comment-template.php:
if ( ! (is_single() || is_page() || $withcomments) ) return;
They’re in the function comments_template. The source code comments for that function give the explanation.
To get the effect you want, replace the first of those two lines to
if ( ! (is_single() || is_page() || $withcomments) || is_home() )
Of course, it’s desirable to avoid hacks. If I can find a plug-in toaccomplish this , I’ll try to remember to post a link to it here.
Forum: Themes and Templates
In reply to: Comments – First PageJoe, this is happening because of these lines in wp-includes\comment-template.php:
if ( ! (is_single() || is_page() || $withcomments) )
return;
They’re in the function comments_template. The source code comments for that function give the explanation.
To get the effect you want, replace the first of those two lines to
if ( ! (is_single() || is_page() || $withcomments) || is_home() )
Of course, it’s desirable to avoid hacks. If I can find a plug-in toaccomplish this , I’ll try to remember to post a link to it here.
Forum: Themes and Templates
In reply to: Clean, modern theme for WordPress beginner modificationThe info and downloads at this link may be helpful.
https://designadaptations.com/notebook/rapid-development-toolset-for-wordpress-theming/Forum: Plugins
In reply to: seeking plugin: alternate content for logged in usersYou could try Sniplets by John Godley.