Shreyo
Forum Replies Created
-
Forum: Plugins
In reply to: [qTranslate] When will the qTranslate update for WP 3.8 be available?Forum: Plugins
In reply to: [NextGen NivoSlider] PHP errorare you working locally?
Forum: Fixing WordPress
In reply to: Deleted homepage but the content on the starting page still existsCheck ‘Settings’ -> ‘Reading’ -> ‘Front page’. You must have selected the ‘Static Page’.
Forum: Plugins
In reply to: [Post Types Order] Woocommerce product sorting not workadd the below code to the functions.php
add_filter('woocommerce_default_catalog_orderby', 'woo_catalog_orderby'); function woo_catalog_orderby() { return 'price'; // Can also use title and date }
this should make the sort work.
can you clarify the purpose of the code and is it in theme or in plugin? why do you want to count only the first three?
did you try wp-postviews?Forum: Localhost Installs
In reply to: Importing site locallyyou need to change the website links that are stored in the database. look into the table ‘wp_options’ and search for your remote site address and this will hopefully bring out 2 or 3 rows out of the said table. edit them carefully.
and this will work if you edited it right.Forum: Localhost Installs
In reply to: error instalationdid the solution said by gezimb work? or still the same?
Forum: Plugins
In reply to: [Post Types Order] Woocommerce product sorting not workdid you had problem with the front-end (shop page) sorting or at the admin section?
awaiting reply,you can do them using the classes and ids’ of the output to write your own CSS. and at some point you might need to user ‘!important’ to override the default style.
Forum: Plugins
In reply to: [WordPress Post Tabs] No tabs after adding the shortcodestab shortcode does not work when shortcode is used betweeb [wptab].
any solution?@marcus, @agelonwl and @caimin,
many thanks for your support.
the issue is fixed.
this happened because the page template i am using to format the events and calendars had only ‘the_post();
‘ and not ‘if ( have_posts() ) : while ( have_posts() ) : the_post();
‘.this was the reason why the event custom template page overwrote the menu items.
but by only this particular page and not other pages this is the only thing still haunting me.
anyways, i learnt a lesson from this. ?? and thanks again.
for your information, the website uses wp-skeleton for its template files.
thanks,thanks for the link but code in the site is correct as noted. ??
its a custom made theme from scratch.
no Marcus, i looked for the loop and it has been ended at right place. moreover, this issue is only on page i mentioned above and all other pages are just fine.
i’m still trying to figure out the cause for this weird behavior.