Reuben
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WordPress category gives 404 after moving to a different domainMake a copy of your website locally and test it. I am assuming there is either something wrong with your .htaccess file or the database.
Seems like your attachment rules are taking over your category rules(maybe because they don’t exist in your database).
Also, try replacing rewrite_rules with the _transient ones but do a database backup first.
Forum: Fixing WordPress
In reply to: WordPress category gives 404 after moving to a different domainDid you try default theme(with all plugins deactivated)?
Use debug bar plugin and see what is the query sql.Forum: Fixing WordPress
In reply to: WordPress category gives 404 after moving to a different domainDo categories work with other permalink settings i.e /%year%/%monthnum%/%day%/%postname%/ ??
Forum: Fixing WordPress
In reply to: WordPress category gives 404 after moving to a different domainAre these rules with the patch applied from the ticket?
The first rules don’t seem to have category rules(maybe I’m missing something there) but the second rules contain category rules.
A URL to your site would also be helpful.
Forum: Fixing WordPress
In reply to: WordPress category gives 404 after moving to a different domainPastebin rewrite_rules from options table
Forum: Plugins
In reply to: pre_get_posts problemChange this to
$query->set('meta_key','oqp_guest_email'); $query->set('meta_value',$dummy_email);
to
$query->set( 'meta_query', array( 'key' => 'opq_guest_email', 'value' => $dummy_email, 'type' => 'string', 'compare' => '=' ) );
See this ticket https://core.trac.www.ads-software.com/ticket/14645 for more information.
Edit:
Try
$query->set( 'meta_query', array( array( 'key' => 'opq_guest_email', 'value' => $dummy_email, 'type' => 'string', 'compare' => '=' ) ) );
Forum: Fixing WordPress
In reply to: Fatal Error cant log in to admin or site anymoreAdmin Bar Minimiser plugin is only compatible with 3.1
Forum: Hacks
In reply to: Sticky Location on Twenty Ten Themsor maybe you can use recent posts widget.
Forum: Fixing WordPress
In reply to: change style sheet based on user's local time?A little sample to get you started:
d = new Date(); if( d.getHours() > 5 && d.getHours() < 18 ){ alert('day'); } else { alert('night'); }
Forum: Plugins
In reply to: [KISS URL] [Plugin: KISS URL] submit buttom errorOkay he fixed it, the new version will be up in 15 mins.
Forum: Plugins
In reply to: [KISS URL] [Plugin: KISS URL] submit buttom errorThe submit_button() is a 3.1 function, I’ll tell Victor(plugin developer) to back compat it for 3.0
Just wait for the next update.
Forum: Fixing WordPress
In reply to: get_comments() by Post IDMove the ‘$comments = …’ to the while loop.
<?php while ($featuredPosts->have_posts()) : $featuredPosts->the_post();?> <?php $comments = get_comments( array( 'number' => 2, 'post_id' => get_the_ID() ) ); ?>
Forum: Fixing WordPress
In reply to: plugins access on dashboardI have my wordpress.com account hosted on bluehost
www.ads-software.com is self hosted.
https://en.support.wordpress.com/com-vs-org/Forum: Fixing WordPress
In reply to: Problems with twitter and commentsDisable ZdStatistics plugin and check your site
Forum: Fixing WordPress
In reply to: Quotes around excerptor you can create a sprite( or separate two images ) for opened and closed quotes and use them as background using CSS
for example:p:first-child
and ‘p:last-child’ or any other selectors.