cedcommerce
Forum Replies Created
-
Forum: Plugins
In reply to: [Advance Waitlist] Translations?Hello violetacosmeticosbr,
Please send your reply if it works for you or not!
Thanks
CedCommerceForum: Plugins
In reply to: [Advance Waitlist] Add option for users not logged inYou are welcome 🙂
Marking it as Resolved.
Forum: Fixing WordPress
In reply to: Making one category hide on homepageHello tashacarolina,
Add the following code in your child theme functions.php file
function cedcommerce_exclude_category( $query ) {
if ( $query->is_home() && $query->is_main_query() ) {
$query->set( ‘cat’, ‘write category id here with negative sign(ex: -1)’ );
}
}
add_action( ‘pre_get_posts’, ‘cedcommerce_exclude_category’ );may this will help you.
Forum: Fixing WordPress
In reply to: Yet another Page Not FoundHello hutty
Have you tried updating the home page from the settings tab?
Settings>Reading> then go for Front page displays choose static page, then pick the page you want to display as home page.Forum: Plugins
In reply to: [One Click Order Re-Order] Translations not importing to WP.orgGreat! and thanks for marking this as resolved!
Regarding change log: Ah, that seems to be in reverse order 😛
okay will do changes very soon.
Thanks
CedCommerceForum: Plugins
In reply to: [Ordered Variable Product Report] User RoleHello noempty
We have checked and found that only user who manages woocommerce could only access the report for variable product, so we have launched new version 1.0.3, Now all users with role having “manage_woocommerce” capability can use the report section.
If you want some more features then please contact us on support@cedcommerce.com
Thanks
CedCommerceForum: Fixing WordPress
In reply to: New subdomain installation has old root linksJust moving files from one directory to another directory and changing the site url and home url is not complete process of site migration. There are many places where site url, home url is used. You have to migrate the whole site( Files and database) for switching from one directory to another or one server to another.
You are facing the problem that when you click on menu it is redirected to old site, it is due to that your database is not migrated. There are many plugins available which is used for database migration. Use one of them and enjoy !!Forum: Fixing WordPress
In reply to: Change post title size in search resultsI have visit the site and find that In your theme archive.php file the post title is written in <h1> tag. You have to replace the h1 tag to h2 and everything will be fine.
Forum: Fixing WordPress
In reply to: Cannot edit siteHi hibba123,
It seems your url couldn’t saved appropriately,
Please check your database in wp_options table and see if the “option_value” column next to “siteurl”
and next to “home”, is same what you changed through setting. If not then please take the backup of your db
and then change that value according to need.Forum: Plugins
In reply to: [One Click Order Re-Order] Translations not importing to WP.orgHello Krzysztof,
Yeah we checked and found that old language files were not removed, hence it will cause error to you. Also we have fixed the small issue and launched new version.
Hope this time you will not get any issues 🙂
Thanks
CedCommerceForum: Fixing WordPress
In reply to: Block Same SizeHello balajicargo1234,
Please try the following code:
Add the following code in your functions.php<?php function custom_excerpt_length( $length ) { return 50; } add_filter( 'excerpt_length', 'custom_excerpt_length', 999 ); ?>Where 50 is the total number of characters shown, you can change that length by yourself.
If the length of the post content will be same then all the blocks will be same.Forum: Plugins
In reply to: [One Click Order Re-Order] Translations not importing to WP.orgHello Krzysztof,
Thanks for pointing out this issue,
We have fixed it and launch new version. Please check!
Thanks
CedCommerceForum: Fixing WordPress
In reply to: spam comments on single postYou can do this without the help of any plugin, by using the wordpress settings, please follow these steps to prevent comments publishing directly, or send them directly in trash based on the keywords.
1- go to the Settings > Discussion
2- Change the settings accordingly, or add the keywords one per line to directly send the comment to trash.
3- If you set the settings to “Comment must be manually approved ” then you can approve/unapproved the comment from the comments page.Hope this will help you.
Forum: Plugins
In reply to: [Advance Waitlist] Add option for users not logged inHello Irene333,
We have fixed this issue and launched new version (1.0.2), please upgrade your plugin
Thanks
CedCommerceForum: Fixing WordPress
In reply to: Read more code not workHello jacksonrumi,
There are some syntax error in the code you’re using, I’ve corrected your code and here is the final code,
please try this one:<?php function excerpt($num) { $limit = $num + 1; $excerpt = explode ( ' ', get_the_excerpt (), $limit ); array_pop ( $excerpt ); $excerpt = implode ( ", ", $excerpt ) . ' <a href="'. get_permalink() .'" id="readmore">Read More</a>'; echo $excerpt; } function wpse_filter_excerpt_length($length) { if (is_front_page ()) { return 55; // change this to number of words you want on homepage. } else { return $length; } } add_filter( 'excerpt_length', 'wpse_filter_excerpt_length', 999 ); ?>