onepack
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Does Paging work on Custom Post Type Archives?Same here… No luck whatever I do.
Forum: Fixing WordPress
In reply to: scheduling for custom post types?Same here.. Just made a custom post type and schedule in the future. It will always miss the schedule.
Forum: Fixing WordPress
In reply to: Permanlink to comment in paged commentsOk ?? having been looking for a solution for some time and finally by going through wp-includes/comment-template.php I found:
get_comment_link and this gives the full url including subpages. ??comment__post_ID) .'" title="'.get_the_title($comment->comment_post_ID).'" rel="nofollow">
Hope this helps some other people as well.
Forum: Fixing WordPress
In reply to: Custom post types permalinks 404I solved my 404 problem with custom post types by re-saving the permalinks in the wordpress backend.
Hope this helps some of you.
Forum: Plugins
In reply to: [MailPress] [Plugin: MailPress] Weekly mails stopped workingYou’re welcome!
Forum: Plugins
In reply to: [MailPress] [Plugin: MailPress] Weekly mails stopped workingHi Nivosh,
Just de-activate – activate all the mailpress addons. It worked again after that with me.
Hope it helps.Forum: Plugins
In reply to: [MailPress] [Plugin: MailPress] Weekly mails stopped workingSame here since the upgrade… Have to find out what is happening. Checked the database and logs and cron… deactivated some of the used add-ons… Have to test it now
Forum: Plugins
In reply to: [Plugin: wordTube] error #2035 when playing youtube Videos@gferris1000. Thank you for helping us out. I found out about player.swf but completely forgot about yt.swf..
Forum: Fixing WordPress
In reply to: How to add nofollow manuallyLooking for the same thing here
Forum: Fixing WordPress
In reply to: Changing database prefix from wp_ to something elseOk… the way to get this fixed for users that don’t know what to do.
Get a fresh install of the latest version of WP. Install this on your local server. In the new setup you can now set a custom table prefix by default. Make this qwe12s_ or whatever you want.
Once you set up this blog go into the database and check the tables that you are not sure about. Compare them with the blog that you just worked with and changed the table prefix on.I found out that the prefix for cron needs to stay wp_
I hope I helped somebody with this info.
Forum: Fixing WordPress
In reply to: Changing database prefix from wp_ to something elseMy cron stopped working after renaming my table prefix. Have to find out how and what now…
Forum: Plugins
In reply to: [Plugin: Yet Another Related Posts Plugin] Sever crashI tried to install it again and now I get this message: The plugin generated 208 characters of unexpected output during activation. If you notice “headers already sent” messages, problems with syndication feeds or other issues, try deactivating or removing this plugin.
I worry a little now about using this plugin.
Forum: Plugins
In reply to: [Plugin: Yet Another Related Posts Plugin] Sever crashSame here. A complete server crash after activating the plugin. It works fine on my local testing Wamp environment but putting it online with the live website caused the website to crash.
Found the solution thanks to Florian on https://www.wp-eventscalendar.com
Edit “events-calendar.php”, go to function EventsCalendarINIT() and add the following line:
function EventsCalendarINIT() {
//bugfix
$svr_uri = $_SERVER[‘REQUEST_URI’];
//end bugfixThe same for me! Tags and visibility options don’t work any longer… I find more and more bugs… I will look for a fix and let you guys know if I found one.