John Parris
Forum Replies Created
-
Forum: Plugins
In reply to: [Contact Form DB] Why so many updates?I prefer the more frequent updates that are targeted in nature as opposed to large updates that touch a million things. Thanks for maintaining the plugin. Do you have this hosted on Github or somewhere similar?
Cameron,
You can sell products on your site. If you need other vendors to sell on your site and be able to manage their own products, you’ll need some add-ons. See the Marketplace Bundle for more information.
Forum: Themes and Templates
In reply to: [Editor] Center Sidebar on MobileHi there,
You can center the logo with a little custom style. Head over to our site and grab the Editor child theme. Follow those instructions to get started. Using the instructions under the Customizing Styles heading, add the following CSS:
.site-logo { text-align: center; }Forum: Themes and Templates
In reply to: [Editor] articel widthHi Oliver, not sure what you’re asking here. Can you be more specific?
Hi Joy,
You should be able to add the following CSS to remove the scrollbar:
.site-header { overflow-y: hidden; }Forum: Plugins
In reply to: [qTranslate] qTranslate compatibility with WordPress 4.0.1Sonal, see this page for a way to fix this. It seems like the qTranslate author is unresponsive to support requests and attempts to contact him. Editing the plugin files for now seems to be the only sensible fix. Long term it’s probably wise to move to something else.
Forum: Themes and Templates
In reply to: [Editor] No option for Featured PostsHi Darren,
Under Appearance > Customize > Theme Options in your WordPress dashboard there is an option called Sidebar Featured Post Category. If you set a category here and publish some posts in that category, it will enable that pushpin icon and show the featured posts there.
Forum: Plugins
In reply to: [BackWPup – WordPress Backup & Restore Plugin] DropBox Handshake Error (35)Dropbox changed their system. You now need the latest version of BackWPup installed, and you’ll need to reauthenticate with Dropbox in the backup job settings.
Forum: Fixing WordPress
In reply to: WordPress 4.0 & Missed Schedule postsThis might help others. In my case, it was a caching issue. My site was configured to use APC. Around the same time I had updated PHP to 5.5x, which isn’t supported by APC at this point. I had forgotten about doing the PHP update and the whole APC thing. Disabling APC fixed my cron issues.
Forum: Themes and Templates
In reply to: [Editor] several changes to the themeHi Alan,
To disable comments on your posts and pages, you need to turn off comments for those pages. Edit the page or post, and turn them off in the Discussion box. If you don’t see a box called Discussion on the page editing screen, you can turn it on under the Screen Options tab.
To remove the page title from the current page, you’ll need to make customizations to the theme. If you’re comfortable doing this, I can get you started in the right direction. It’s best to make customizations like this in a child theme so that you don’t lose your changes when you install Editor updates in the future.
Once you’ve created and activated your child theme, copy the content-page.php file from Editor into your child theme folder. Then edit the new content-page.php file and look for the following:
<header class="entry-header"> <h1 class="entry-title"><?php the_title(); ?></h1> </header><!-- .entry-header -->Replace it with this:
<?php if( ! is_singular() ) { ?> <header class="entry-header"> <h1 class="entry-title"><?php the_title(); ?></h1> </header><!-- .entry-header --> <?php } ?>The above works for pages. If you need to do posts this way, copy content.php into your child theme folder, edit it, and look for this:
<h1 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h1>Replace it with this:
<?php if( ! is_singular() ) { ?> <h1 class="entry-title"><a href="<?php the_permalink(); ?>" rel="bookmark"><?php the_title(); ?></a></h1> <?php } ?>Forum: Plugins
In reply to: [Register Plus Redux] Two settings menu optionsCool.
What about the Go Premium page? It looks like it gets stuck in some kind of loop and doesn’t show anything. Can you reproduce that?
Forum: Fixing WordPress
In reply to: WordPress 4.0 & Missed Schedule postsI’ve had issues with cron jobs not running at all. This is an established multisite install and it seems to have started when upgrading to 4.0.
I see the automatic wp-cron.php hits in the logs, like this:
[14/Oct/2014:08:51:01 -0400] "POST /wp-cron.php?doing_wp_cron=1413291061.6062629222869873046875 HTTP/1.0" 200 165 "-" "WordPress/4.0;But the jobs don’t run. No errors anywhere. If I manually fetch the wp-cron.php file, the jobs run. Anyone else noticing this?
Forum: Plugins
In reply to: [Register Plus Redux] Two settings menu optionsYes. Screenshot here.
Hi Joy,
We have a newsletter signup form at the bottom of the page at Array here, but we use that for new theme announcements and such, not theme updates. You’ll automatically get a notice in your WordPress dashboard when Editor is updated.
Hope you have a good weekend too. 🙂
Forum: Plugins
In reply to: [Array Toolkit] Not compatible with 4.0?Hi,
The plugin is compatible with 4.0. We just haven’t pushed an update to the readme file ww.wp.xz.cn uses to display that number. We have a small update for icons coming soon and we wanted to wait until then.