dealdaddy
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Listing categories alphabeticallyThanks for the reply. Yeah I’ve had a look around, found a half baked solution earlier and after some playing around I got it to work…
Here is the original documentation, this is the only one I could find;
http://techslides.com/a-z-category-index-wordpress-plugin
And the working version = https://coupons24hrs.com/browse/
So it just sorts the categories into a tidy list, I will post up the modifications I made onto a Github should anyone else require the same. The original had a lot of unwanted bits in for what it’s worth, it helped a lot though!
Forum: Developing with WordPress
In reply to: Sort by Meta Field DateSELECT SQL_CALC_FOUND_ROWS oi7m_posts.ID FROM oi7m_posts INNER JOIN oi7m_postmeta ON ( oi7m_posts.ID = oi7m_postmeta.post_id ) WHERE 1=1 AND ( oi7m_postmeta.meta_key = 'expiry' ) AND oi7m_posts.post_type = 'post' AND (oi7m_posts.post_status = 'publish') GROUP BY oi7m_posts.ID ORDER BY oi7m_postmeta.meta_value+0 DESC LIMIT 0, 10Oh i got it.. does that make any sense?
Forum: Developing with WordPress
In reply to: Sort by Meta Field DateThanks for your response.
So far it is looking like this;
$args = array( 'meta_key' => 'expiry', 'meta_type' => 'DATETIME', 'orderby' => 'meta_value_num date' ); $query = new WP_Query( $args ); print_r($query->query);I tried echoing the SQL but it returns an array..
Array ( [meta_key] => expiry [meta_type] => DATETIME [orderby] => meta_value_num [numberposts] => 50 ) ?
I added in numberposts to make sure that it wasn’t an infiniteloader plugin which would evidently load X more posts and not all of them…
Forum: Fixing WordPress
In reply to: free template for a nice profiles pagesI would recommend checking out Buddypress… it has much better display for community like websites and has some cool features.
Forum: Fixing WordPress
In reply to: WordPress and Porto ThemeHave a look in the theme customizer
Forum: Fixing WordPress
In reply to: help – Endless loading on checkout page in WoocommerceYou could try to debug PHP to see if there are any variables missing by turning error reporting ON, I’ve googled your query and there are numerous reasons why this could happen.
Forum: Fixing WordPress
In reply to: Can’t add widgets while customizing wordpressMy guess is that you have added the widget code onto one of the site sections i.e content.php and not the archives or something? But without seeing your site file list and/or template used I cannot comment any further. I would make sure that the widget code is added throughout your template.
Forum: Fixing WordPress
In reply to: installed 4.8: too many redirects and now i’m lostHave you fixed this now yes? The time waiting for the site to redirect I would suggest that you are using too many redirects but I get no error message.
Forum: Fixing WordPress
In reply to: Https and http issueI’ve just ran a test on https://www.ssllabs.com/ssltest/analyze.html?d=www.skidiamond.com and it says certificate name mismatch so my guess is that the SSL certificate has being installed incorrectly… I would contact your web hosting company to rectify this.