Ben Casey
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Memory Limit Increase…Nothing is workingThe problem isn’t memory, its upload size.
You can view your server configuration by creating a PHP document with the following (and nothing else)
`
<?php
phpinfo();
?>
`If creating a custom php.ini and changing the
upload_max_filesizedirective has no effect (check using phpinfo π ) then you might have to upload the theme using FTP (which uploads individual files at a time) instead of using the browser.Just out of curiosity how big is the theme?
Cheers
BenForum: Fixing WordPress
In reply to: Forbidden erroris this on a windows or apache server ?
Forum: Fixing WordPress
In reply to: What's wrong with my plugin?First off, its best practice to use a code pasting tool such as http://pastebin.com/ for large chunks of code
The problem with the plugin is with the style block at the end. shouldn’t be there at all.
It should be in a function hooked into wp_head.
function nvtd_styles(){
?>
<style type=”text/css”>…….
</style>
<?php
}
add_action( ‘wp_head’, ‘nvtd_styles’ );this will load that CSS directly into the head once on every page call, without any unwanted errors.
Let me know if you have any questions.
Cheers
BenForum: Fixing WordPress
In reply to: Permalinks vs mewhen you press save is there a section saying something along the lines of:
If your .htaccess file were writable, we could do this automatically, but it isnβt so these are the mod_rewrite rules you should have in your .htaccess file. Click in the field and press CTRL + a to select all.If so (and Im assuming that its a .htaccess on apache not web.config on IIS) then you will need to create your htaccess manually.
Create a file called .htaccess (No other extensions) on your desktop in any normal text editor with the data shown in the permalinks page (should be something like the below block), and upload it to the webroot of your site.
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /
RewriteRule ^index\.php$ – [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /index.php [L]
</IfModule>Let me know how you go.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] Can't find my booksIf you set the post status to draft or pending review on the right hand side in the box titled “Publish” it won’t show up on the site, if you do there is something very funky going on.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] Can't find my booksYou do not have pretty permalinks enabled.
Please go to Settings -> Permalinks in your admin dashboard and choose from the common options.
This will create the “/books” page as well as a pretty URL’s for everything in your site – eg: http://nonnovecchio.net/?page_id=33 will become http://nonnovecchio.net/about-nonno-vecchio (you can edit the slug for your pages in the page edit screen. )
Please let us know if you have any more problems.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] error message when trying to add books@bdrozdowich can you please send me a list of plugins you are using on your site? it sounds like it could be a plugin compatability problem.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] Amazon Logo – Totally Booked@ agschweigert we are in the process of investigating this and if it is required we will update the plugin ASAP.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] Widget images don't appear correctly@ excalibr23 can you please try refreshing your permalinks (Settings -> Permalinks and press save, you don’t have to change anything) and let me know if that helps.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] Theme HeaderForum: Plugins
In reply to: [Totally Booked] "Buy Now" button not workingYou are overriding the WP included version of jQuery with a very old and incompatible version.
Totally Booked should use the default WP included version of jQuery.
Let me know if there is anything else I can help you with.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] How Do I Link to the Books?@ HomeschoolBookHunters
if your nav bar is managed in the wp-admin, you can add a custom link to “/books” or whatever the books page slug is set to in the admin options for the books archive page.
If you are having trouble getting the right URL for this page, visit it on the front end and copy / paste the URL. The same goes for the various archives (authors, genres etc)
The individual book pages should be available on the left hand side, if they are not there, have a look in the screen options ( top right ) and check “Books” to enable them in the sidebar.
Let me know if this doesn’t clear it up a bit.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] Reader Extras Disappear@ HomeschoolBookHunters that is really weird.
Is there any way you could email me some access credentials so I can have a quick look? support (at) tigerstrikemedia.com ?
Cheers
BenForum: Plugins
In reply to: [Totally Booked] Is there a limit on book number of series?You can set a higher number in the settings
Totally Booked -> Update Options -> Advanced Options -> “Archive Maximum Posts”
Enter a high number ( Like 1000 ) in there and they will all show on the books page.
Cheers
BenForum: Plugins
In reply to: [Totally Booked] Adding social sharing buttonsThere is no reason you can’t do any of the following:
use a plugin that filters the_content() ( Usually the ones that add the content automatically will do this, they may or may not have options for custom post types, if they don’t there is not a whole lot for that option )
Or you could create custom templates with the social media code.
Cheers
Ben