Title: John Parris's Replies - page 25 | WordPress.org

---

# John Parris

  [  ](https://wordpress.org/support/users/mindctrl/)

 *   [Profile](https://wordpress.org/support/users/mindctrl/)
 *   [Topics Started](https://wordpress.org/support/users/mindctrl/topics/)
 *   [Replies Created](https://wordpress.org/support/users/mindctrl/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/mindctrl/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/mindctrl/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/mindctrl/engagements/)
 *   [Favorites](https://wordpress.org/support/users/mindctrl/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 361 through 375 (of 942 total)

[←](https://wordpress.org/support/users/mindctrl/replies/page/24/?output_format=md)
[1](https://wordpress.org/support/users/mindctrl/replies/?output_format=md) [2](https://wordpress.org/support/users/mindctrl/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/mindctrl/replies/page/3/?output_format=md)…
[24](https://wordpress.org/support/users/mindctrl/replies/page/24/?output_format=md)
25 [26](https://wordpress.org/support/users/mindctrl/replies/page/26/?output_format=md)…
[61](https://wordpress.org/support/users/mindctrl/replies/page/61/?output_format=md)
[62](https://wordpress.org/support/users/mindctrl/replies/page/62/?output_format=md)
[63](https://wordpress.org/support/users/mindctrl/replies/page/63/?output_format=md)
[→](https://wordpress.org/support/users/mindctrl/replies/page/26/?output_format=md)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Editor] Dark Color not working](https://wordpress.org/support/topic/dark-color-not-working/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/dark-color-not-working/#post-6600520)
 * It looks the option isn’t saved. Does it work if you toggle the setting to light,
   save it and exit, then go back in and toggle it back to dark and save?
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Editor] Dark Color not working](https://wordpress.org/support/topic/dark-color-not-working/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/dark-color-not-working/#post-6600505)
 * Hi, do you have a link to your site where I can see it live?
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Digital Downloads – eCommerce Payments and Subscriptions made easy] Updating size of Checkout buttons](https://wordpress.org/support/topic/updating-size-of-checkout-buttons/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/updating-size-of-checkout-buttons/#post-6594446)
 * Hi Eric,
 * Try targeting `.edd-submit` instead of `.edd_button_text`.
 * To remove the default button in favor of your custom button, edit the product
   and check the option to “Disable the automatic output of the purchase button”
   in the Download Settings box. Screenshot: [http://cl.ly/image/1V0F160G2D0N](http://cl.ly/image/1V0F160G2D0N)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Easy Digital Downloads – eCommerce Payments and Subscriptions made easy] combining edd categories with main (post) categories](https://wordpress.org/support/topic/combining-edd-categories-with-main-post-categories/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/combining-edd-categories-with-main-post-categories/#post-6594444)
 * Hi there,
 * There’s not an option to combine the EDD categories with the Post categories,
   if that’s what you’re asking. We don’t support that. Sorry.
 *   Forum: [Localhost Installs](https://wordpress.org/support/forum/localhost-installs/)
   
   In reply to: [Permalinks wont work other than default](https://wordpress.org/support/topic/permalinks-wont-work-other-than-default/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/permalinks-wont-work-other-than-default/#post-6581450)
 * Can you show me the contents of the .htaccess file in the root of your web folder?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Autoresponse](https://wordpress.org/support/topic/autoresponse-1/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/autoresponse-1/#post-6581884)
 * I’m not sure about BuddyPress, but you can email people with Contact Form 7 when
   they submit forms.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How can I replace only specific text using gettext](https://wordpress.org/support/topic/how-can-i-replace-only-specific-text-using-gettext/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/how-can-i-replace-only-specific-text-using-gettext/#post-6580503)
 * Hi,
 * You could use preg_replace to get specific, or something like this:
 *     ```
       function jp_filter_gettext( $translated, $original, $domain ) {
   
       $strings = array(
       	'Old' => 'New',
       );
   
       if ( isset( $strings[$original] ) ) {
       	$translations = get_translations_for_domain( $domain );
       	$translated = $translations->translate( $strings[$original] );
       }
   
       return $translated;
       }
       add_filter( 'gettext', 'jp_filter_gettext', 10, 3 );
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Website reinstallation](https://wordpress.org/support/topic/website-reinstallation/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/website-reinstallation/#post-6581385)
 * Hi,
 * Without a copy of the database you won’t be able to reinstall and have all the
   content you had before. You need some kind of database backup to restore the 
   content. None of the page content is stored in the wp-* folders like that, except
   images and things uploaded via the media library.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Display author's full name instead of email address.](https://wordpress.org/support/topic/display-authors-full-name-instead-of-email-address/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/display-authors-full-name-instead-of-email-address/#post-6581879)
 * Hi Edwin,
 * If you change the user’s “Display name publicly as” setting on the user account
   edit screen, that will change what is displayed there.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Media button missing for Editor role](https://wordpress.org/support/topic/media-button-missing-for-editor-role-1/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/media-button-missing-for-editor-role-1/#post-6570372)
 * Hi there,
 * The reason people ask you to temporarily deactivate plugins and switch to a default
   theme is because there’s a possibility other code is causing the issue. That’s
   always a good step to take to eliminate possible conflicts.
 * I just tested an editor user on WP 4.3.1 and I can see the media library and 
   the add media button on new posts. It sounds like you have a conflict or something
   going on. Definitely time to try the deactivate thing to see.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [does real cron affect my analytics](https://wordpress.org/support/topic/does-real-cron-affect-my-analytics/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/does-real-cron-affect-my-analytics/#post-6571953)
 * Hi,
 * It shouldn’t affect your analytics. I don’t think any analytics code would get
   loaded when fetching the wp-cron.php file.
 *   Forum: [Networking WordPress](https://wordpress.org/support/forum/multisite/)
   
   In reply to: [Upgrade to 4.2.5 – Wiped out styles and formatting](https://wordpress.org/support/topic/upgrade-to-425-wiped-out-styles-and-formatting/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/upgrade-to-425-wiped-out-styles-and-formatting/#post-6574033)
 * Hi,
 * Without some screenshots and more info, it’ll be hard to help here. Can you provide
   some?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [WordPress Media Disappears with .htaccess password protection](https://wordpress.org/support/topic/wordpress-media-disappears-with-htaccess-password-protection/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/wordpress-media-disappears-with-htaccess-password-protection/#post-6575398)
 * Hi,
 * Please share the .htaccess file contents causing the break.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [private post shown in rss](https://wordpress.org/support/topic/private-post-shown-in-rss/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/private-post-shown-in-rss/#post-6577762)
 * Are you logged in while viewing the feed?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Frontend post with document embedding](https://wordpress.org/support/topic/frontend-post-with-document-embedding/)
 *  [John Parris](https://wordpress.org/support/users/mindctrl/)
 * (@mindctrl)
 * [10 years, 10 months ago](https://wordpress.org/support/topic/frontend-post-with-document-embedding/#post-6577761)
 * Hi Kristina,
 * I’m not certain, but maybe this plugin? [https://wordpress.org/plugins/wp-user-frontend/](https://wordpress.org/plugins/wp-user-frontend/)

Viewing 15 replies - 361 through 375 (of 942 total)

[←](https://wordpress.org/support/users/mindctrl/replies/page/24/?output_format=md)
[1](https://wordpress.org/support/users/mindctrl/replies/?output_format=md) [2](https://wordpress.org/support/users/mindctrl/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/mindctrl/replies/page/3/?output_format=md)…
[24](https://wordpress.org/support/users/mindctrl/replies/page/24/?output_format=md)
25 [26](https://wordpress.org/support/users/mindctrl/replies/page/26/?output_format=md)…
[61](https://wordpress.org/support/users/mindctrl/replies/page/61/?output_format=md)
[62](https://wordpress.org/support/users/mindctrl/replies/page/62/?output_format=md)
[63](https://wordpress.org/support/users/mindctrl/replies/page/63/?output_format=md)
[→](https://wordpress.org/support/users/mindctrl/replies/page/26/?output_format=md)