gulliver
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Independent Publisher] Switch to single column layoutThanks.
I hadn’t seen that option – entirely my error for being lazy.
Forum: Themes and Templates
In reply to: [Independent Publisher] Post cover?Ah… I hadn’t seen the ‘update, then update’ bit.
Thanks.Forum: Fixing WordPress
In reply to: Remove page titlesThanks.
With my limited knowledge,that looks to be too much of a task.Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Not working on my themeUPDATE: Fault was entirely mine. Sorry.
I’d incorrectly set the management url.
It’ll still be useful to see that ‘create a real page’ info because presumably that’ll offer more control (page title shown in browser, breadcrumbs, etc).
Forum: Plugins
In reply to: [Subscribe To Comments Reloaded] Not working on my themeThanks.
The theme is one of my own – heavily tweaked to remove/add various behavior – and hence potentially a problem.
But, having installed it on a test site and with apparently the same config/plugins, things seem to work fine. Odd – I’ll investigate this further.
I’ll be helpful though if that broken link is restored.
Forum: Fixing WordPress
In reply to: Not importing cssThanks to you both.
Forum: Fixing WordPress
In reply to: Change site addressFURTHER UPDATE: This is here in the hope it may help someone else who gets a problem, because I’m not sure the codex is sufficiently clear, and the page mentioned above seems to contradict another at http://codex.wordpress.org/Giving_WordPress_Its_Own_Directory.
I’ve frequently changed the ‘public url’ of my installs by editing the ‘Site Address’ in ‘general settings’. If it’s then publishing into a directory, I then create that directory and copy into it the old index.php and .htaccess files and appropriately edit them to show the correct paths. I then remove those older index.php and .htaccess files from the root/whatever other folder it was publishing into. Things then work as they should – available at the new location and not at the old.
My error this time was to forget to create the new folder and add the files and then remove the old ones as explained above.
If this isn’t the correct way to do it, I’m happy to be told just how it should be done.
Forum: Fixing WordPress
In reply to: Change site addressUPDATE: I was reluctant to get into the db, but having done so and edited accordingly things are now working again at the previous url.
Forum: Fixing WordPress
In reply to: Change site addressThanks.
Yes, I did read it – after I’d originally changed the url in the dashboard – and since trying the edit wp.config and functions suggestions things are now worse… can’t log-in, and the site is minus the css (although the source shows a location of /old).
Forum: Plugins
In reply to: [WordPress Pagination Plugin: Page-Links Plus] Broken linkThanks – that’s an excellent way of considering it, and one which is genuinely causing me to re-evaluate some of the what/how/why in my own stuff.
Forum: Themes and Templates
In reply to: Format "read more"I’m unsuccessfully trying to use this, and can’t see where I’m going wrong.
My theme has wpautop disabled because it was causing unwanted reformatting of some text. As expected, it also removes the p tags from the ‘read more’ link when using <?php the_content();?>.
I’ve been able to get some css control of my ‘read more’ link by adding a span:
<?php the_content ('<span class="continue-reading">CONTINUE READING »</span>'); ?>But I’d prefer to have the whole line wrapped in p tags – which your code should do.
I’ve added it to the home.php template, and all my pages call JQuery. But it doesn’t modify the code. What might I be doing wrong?
Forum: Plugins
In reply to: [WordPress Pagination Plugin: Page-Links Plus] Broken linkThanks, I’m happy to help – and always grateful to people like you who’re making stuff which improves things.
Forum: Plugins
In reply to: [WordPress Pagination Plugin: Page-Links Plus] Broken linkThanks.
I’ve now had more time to look at this, and…
It’s not multiple instances of wp_link_pages that’s the issue, but that array.
Using it alone works fine in providing ‘previous’ and ‘next’ ‘links.
And it’s also fine when using it with an additional and different version (to provide ‘Page 1 2 3’ links) elsewhere in the template.
But with the plugin active, and viewing a post as a single page the ‘previous’ link in that array is to /postname/-1/.
I’m not very-tech, and hence don’t know enough to suggest more.
Forum: Plugins
In reply to: [WordPress Pagination Plugin: Page-Links Plus] Broken linkAfter a further check with 2012, adding that array code above to the 2012 template recreates the issue.
Forum: Plugins
In reply to: [WordPress Pagination Plugin: Page-Links Plus] Broken linkThanks.
It’s clearly my theme that’s the problem – I just swapped to 2011 and things are fine.
The requested code is below:
<?php wp_link_pages( array( 'before' => '<p class="continue-reading">', 'after' => '</p>', 'next_or_number' => 'next', 'previouspagelink' => '« PREVIOUS ', 'nextpagelink' => 'NEXT »' )); ?>I also use it again, modified, toward the foot of the post:
<?php wp_link_pages('before=<p id="paginate-page-lower">Page: &after=</p>&next_or_number=number&pagelink= %'); ?>