cedcommerce
Forum Replies Created
-
Forum: Plugins
In reply to: [WP Social Media Login] Crashed Site – WP Social Media Login PluginHello george,
We have updated new version of WP Social Media Login as 1.0.2,
please update to this version and also try to check while deactivating “SpeakOut! Email Petitions” plugin, as it seems this also have some kind of warning which we had.Thanks
CedCommerceForum: Reviews
In reply to: [WP Social Media Login] Crashed Site – WP Social Media Login PluginThanks esmi for keeping support to the developer community.
@ghardy2k: We have asked you to tell us what issue you are getting to help you out. If you cannot do the stuffs which we have asked you on support https://wordpress.org/support/topic/crashed-site-wp-social-media-login-plugin?replies=2, then please send your details on support@cedcommerce.com so that we can try to figure out the error.
Thanks All
Forum: Fixing WordPress
In reply to: Home page redirect not workingHi Shyamraj,
Go to Settings > Reading and set static page to JNCIA. After that go to Settings > Permalink and just click on ‘Save Changes’ button.
Hope so it will work.Forum: Plugins
In reply to: [WP Social Media Login] Crashed Site – WP Social Media Login PluginHello ghardy2k,
Apologies for the inconvenience!
It seems our plugin conflicts with other plugins of yours. So please do this once:
please find the line “define(‘WP_DEBUG’, false);” in your wp-config.php file and change it to
“define(‘WP_DEBUG’, true);”and check your wp page, there you will get some error, please send us that error so that we can know what is the actual problem.
Note: please make “define(‘WP_DEBUG’, false);” just after you got the error.
Thanks
CedCommerceForum: Plugins
In reply to: [Hide Price Until Login] vat price still visibleyou are welcome π
Hi Kaynoba,
In your theme’s functions.php file just write the following code :
add_filter( 'woocommerce_get_product_terms', 'cedcommerce_variation_sort'); function cedcommerce_variation_sort($terms) { if($terms) { usort($terms, "cedcommerce_sort"); } return $terms; } function cedcommerce_sort($a, $b) { return $a->name-$b->name; }It will work. Enjoy !!!
Forum: Fixing WordPress
In reply to: Subcategory not show upHello cfm168 ,
Try this ,add_action( 'after_setup_theme', 'create_subcategory_inside_parent' ); function create_subcategory_inside_parent() { if (!term_exists( $term, $taxonomy )) { $parent = wp_insert_term( 'Parent Category', // category name 'category', // taxonomy array( 'description' => 'Category description', 'slug' => 'parent-category', ) ); wp_insert_term( $term, // sub category name 'category', // taxonomy array( 'description' => 'Child category description', 'slug' => 'child-category', 'parent' => $parent['term_id'], ) ); } }Forum: Plugins
In reply to: [Premium-Matrix-Rate] Downloadable contentHi Vbptrin,
Unfortunately this is not available in the current version(1.0.0), we’ll add this features in next version very soon and let you know asap.
Thanks,
CedCommerceForum: Fixing WordPress
In reply to: How to select Γ query with a meta_key and order by anotherHie marilyns11,
There is a little glitch in your code, try this one.$args = array( 'post_type' =>$type, 'posts_per_page' =>-1, 'meta_key' => 'hlm_debute_le', 'meta_key' => 'hlm_debute_le', 'order' => 'DESC', 'meta_query' => array( array( 'key' => 'hlm_edition', 'value' => $idannee, 'compare' => βLIKEβ, ), ), ); $query = new WP_Query( $args );Hope this will solve your purpose.
Forum: Plugins
In reply to: [Premium-Matrix-Rate] Downloadable contentHi Vbptrin,
Sorry for the late reply, if you want to ship your down-loadable products other than US with free shipping, then you can use this plugin and can do by create new rate with 0(zero) shipping price for those specific countries.
Thanks
CedCommerceForum: Plugins
In reply to: [WP Advanced PDF] generate two pdf pages from the same post remove post titleHello visualtricks,
Thanks for using this plugin and appreciation.
Glad you manage with the custom fields. In addition to your query we are making a premium plugin which will contains lots of features in it like:
1. Ability to load/save your custom settings, so that you can have multiple options for PDF layout2. Support for custom post types and custom meta fields
3. Report of downloaded PDFs
4. Inclusion of comments.
and many more
Now we noted down your suggestion and we will make options to add an option after every custom fields. So that you(user) can print meta fields on different pages.
Thanks
CedCommerceForum: Plugins
In reply to: [Ajaxify Filters] Excellent plugin! and Feature requestsHi 7o599,
Thanks for using Ajaxify-filters and for your appreciation.
We are thankful to you for the valuable suggestion. We have started working on it and hopefully will release new version soon with the features mentioned by you.
Thanks
CedCommerceForum: Fixing WordPress
In reply to: /wp-admin or /admin is hanging and not workingHi riseUp,
It seems that the problem is infinite redirection and due to this wp-admin or /admin is hanging and not working.Thanks
Add the following code in theme functions.php file
function search_by_title_only( $search, &$wp_query ) { global $wpdb; if ( empty( $search ) ) return $search; $var = $wp_query->query_vars; $str = ! empty( $q['exact'] ) ? '' : '%'; $search = ''; $searchand = ''; foreach ( (array) $var['search_terms'] as $term ) { $term = esc_sql( like_escape( $term ) ); $search .= "{$searchand}($wpdb->posts.post_title LIKE '{$str}{$term}{$str}')"; $searchand = ' AND '; } if ( ! empty( $search ) ) { $search = " AND ({$search}) "; if ( ! is_user_logged_in() ) $search .= " AND ($wpdb->posts.post_password = '') "; } return $search; } add_filter( 'posts_search', 'search_by_title_only', 300, 2 );this will help you.
Forum: Plugins
In reply to: [Hide Price Until Login] vat price still visibleHello Thijs,
Please reply if it works for you or not?
Thanks
CedCommerce