cedcommerce
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Shipping cost on woocommerceHey ifeanyb,
You can either create new shipping method as per your need ( https://docs.woothemes.com/document/shipping-method-api/) or you can find any existing plugin which can fulfill your needs like https://wordpress.org/plugins/postcode-shipping/Forum: Plugins
In reply to: [Ordered Variable Product Report] User RoleHello noempty
Currently this plugin is view-able for admin only.
But we take your suggestion as a feature and surely launch this support in next version asap.
Please stay connected for the next version
Thanks
CedCommerceForum: Plugins
In reply to: [Advance Waitlist] Add option for users not logged inHello Irene333,
Okay we will check and get back to you as soon as possible.
Please stay connected!
Thanks
CedCommerceForum: Reviews
In reply to: [Wholesale Market] Great pluginHello Hattam,
Thank you for using this plugin and your appreciation.
We are glad to make user of this plugin happy and make this more widely usable.
Thanks
CedCommerceForum: Fixing WordPress
In reply to: Any way to restore lost categories for posts?Hello JessAskin
you have to check you wp-config.php for following:define('DB_HOST', 'Host'); define('DB_NAME', 'your db name'); define('DB_USER', 'Db user'); define('DB_PASSWORD', 'password');and make sure that these constants are correctly defined as your restored database.
WordPress gives this facility for post listing page.
But we can make it for single page( page where the whole content of a post is shown ) too,
by applying self conditions and using php.
First you need to insert read more tag in your post from admin panel.
And then for adding the Read More link do changes in your single.php and paste the following code:<?php global $more; $more = isset( $_GET[ 'more' ] ) ? $_GET[ 'more' ] : 0; ?> //The code must be inserted ahead of the call to the content<?php if ( $more == 0 ) the_content( 'Show More' ); else the_content(); ?>After that go in your functions.php and paste the following code:
<?php function modify_read_more_link() { return '<a class="more-link" href="' . get_permalink() . '?more=-1">Show More</a>'; } add_filter( 'the_content_more_link', 'modify_read_more_link' ); ?>May be this can help you or you can explore this more by your conditions.
Forum: Fixing WordPress
In reply to: Error 404 – After changing post slug for comment page only,Hello,
plz check your .htaccess code is like this# BEGIN WordPress <IfModule mod_rewrite.c> RewriteEngine On RewriteBase /yoursite/ RewriteRule ^index\.php$ - [L] RewriteCond %{REQUEST_FILENAME} !-f RewriteCond %{REQUEST_FILENAME} !-d RewriteRule . /yoursite/index.php [L] </IfModule> # END WordPressIf it is not then please update it and then update again permalinks structure.
Hope this will help you.Forum: Themes and Templates
In reply to: How To Add Specific Products on Homepage?Hi shiriish
If you want to list product in wordpress pages then you can write as :
[products ids=”1, 2, 3, 4, 5″] where 1, 2, 3, 4, 5 are ids of products which you want to list on that page.
If you want to write in code then you can write following php code in file :
echo do_shortcode(‘[products ids=”1, 2, 3, 4, 5″]’);
Forum: Fixing WordPress
In reply to: Problem with WordPress SearchHie kcox117,
The problem seems like to be in your search.php file.
In your active theme, please make a file named “search.php” and just write the following code :if(have_posts()) { while (have_posts()) { the_post(); the_title(); the_excerpt(); } } else { echo “No Search Results To Show”; }Hope this will work.
Once you got the core result, page can be designed accordingly.Hello francistan77
you can customize the plugin’s html by using same actions and filters which are used for customizing shop page products, as content-product.php is called to output html in plugin as well. But don’t forget to wrap customization in condition so that it will not effect your shop page.
Thanks
CedCommerceForum: Fixing WordPress
In reply to: Footer 2 3 and 4 disappeared .Pleasure to help you 🙂
You can see the following link, this can be helpful for you:
https://codex.wordpress.org/Customizing_the_Read_MoreForum: Themes and Templates
In reply to: How To Add Specific Products on Homepage?Hi Shiriish,
You can add specific product using shortcode provided by woocommerce as
[product id=”1″] for a single product
and for listing miltiple products use :
[products ids=”1, 2, 3, 4, 5″]
ThanksForum: Themes and Templates
In reply to: Can't show post summary on wordpress.Hi
In your themes functions.php file write the following code :function new_excerpt_more( $more ) { return '... <a href="'.get_the_permalink().'" class="more-link">Reads More »</a>'; } add_filter('excerpt_more', 'new_excerpt_more');This filter works with the_excerpt();
Forum: Fixing WordPress
In reply to: $_GET and $_SERVER['QUERY_STRING'] not workingHello sabuhiy,
Yes php version can be a problem for this kind of error as the register_globals feature, which automatically put form fields in regular variable scope and initialized with expected values is deprecated DEPRECATED as of PHP 5.3.0 and REMOVED as of PHP 5.4.0, you can check more about this Here ,
Hope this will help you.