cedcommerce
Forum Replies Created
-
Forum: Plugins
In reply to: [Ordered Variable Product Report] Machine letters after import via CSV fileHello noempty
We will check for the issue with cyrillic alphabet and reply here soon.
Thank youForum: Fixing WordPress
In reply to: 403 Forbidden Error on Media UploadHello gasto
Please remove following lines from your .htaccess and check once more##Deny access to all CGI, Perl, Python and text files <FilesMatch ".(cgi|pl|py|txt)"> Deny from all </FilesMatch>Forum: Fixing WordPress
In reply to: Logining into the adminHi,
Please go to https://codex.wordpress.org/Moving_WordPress and you will find solution for the issue. ThanksForum: Fixing WordPress
In reply to: Static page removalHi kushtian,
I can now check you site http://www.applyde.com/
Its seems to be running absolutely fine as it expected to be, as you have set latest-post as your front page. Your site is running great š
I hope this is what you wanted. If it is so, mark your query as resolved.
ThanksForum: Fixing WordPress
In reply to: changing permalink for a custom postHi,
Just trust wordpress. You donāt need to do something extra.
Use this basic code for testing purpose :// Our custom post type function function create_posttype() { register_post_type( 'movies', // CPT Options array( 'labels' => array( 'name' => __( 'Movies' ), 'singular_name' => __( 'Movie' ) ), 'public' => true, 'has_archive' => true, 'rewrite' => array('slug' => 'movies'), ) ); } // Hooking up our function to theme setup add_action( 'init', 'create_posttype' );You can check, you can edit permalink anytime you want. WordPress provide you all option for custom post types, as there is for POST and PAGES.
ThanksForum: Fixing WordPress
In reply to: Changed WP Directory and cannot add mediaHello ,
you can try to turn of monthly sorting of images from admin settings. Settings->Media here uncheck āOrganize my uploads into month- and year-based foldersā option and save changes.
ThanksForum: Fixing WordPress
In reply to: How to get comments showingHey borismoggy,
Please make sure that page is not “Posts Page” and see if there is any template assigned to that page(except “Default Template”), if yes then see template file contains comment template code or not.
Forum: Fixing WordPress
In reply to: Simple jQuery popup functionHi mulvidon,
Will love to help you PHOTOSHOP GUY š
But please first clarify what you want. In the link provided by you, I am not been able to see āRead Moreā link.
Your code snippet is also not provided.
Please provide the code you are using with detail description of what you are trying to do.
Looking forward to help you out.Thanks
Forum: Fixing WordPress
In reply to: Fatal error: Cannot redeclare is_comments_popup()Hello qdungeng,
I would guess that a plugin update has caused this. If you have FTP or a GUI file manager access, I’d suggest renaming the wp-content/plugins out of the way. This will disable all your plugins. If you can now access your site then you’ll need to rename back each plugin in turn to work out what caused the problem.
If you still get the same error then it may be a theme issue – I’d recommend going into wp-content/themes and renaming just the them you’re using to cause that to deactivate – another should activate in its place as a temporary measure.
If you still get the same error then go to this location wp-includes/query.php file
/**
* Set if query is within comments popup window.
*
* @since 1.5.0
* @access public
* @var bool
*/public $is_comments_popup = false;
After this:
public $is_embed = false;But its not a good idea to change in core file.
So,please update your wordpress version by create backup of your old wordpress.Forum: Fixing WordPress
In reply to: Can't reset my passwordHie galan05,
Forgot your password ! it happens sometimes⦠But there is always a solutionā¦
If you got mail it will be easier ā¦. but in your case it is notā¦I want to know is you own the site and you have forgot your admin username/password ?
Are you donāt able to access your admin-dashboard?
How many admin users you have in your site?Thanks
Forum: Plugins
In reply to: [Wholesale Market] Allowing administrators to see wholesale pricesHi Boombalaya,
Thanks for using and appreciating Wholesale-Price.
By default only wholesale-customer role users can see wholesale-price. However, there is a setting under woocommerce->settings->wholesale-market where you will find āGeneral Configurationsā tab and āWho can see wholesale-priceā setting below it.
For Admin to see wholesale price you need to change the visibility of wholesale-price to all users.
Note: Other users (including Administrator) will only able to see wholesale-price, but still it will not be applicable to them. You can also use it as a promotional strategy so that more of your user become Wholesale customer.
Thanks
CedCommerceForum: Fixing WordPress
In reply to: How to exclude some content from posts to be used as "excerpt"Hi estevenin,
Write the following code in your theme’s functions.php file.function cedcommerce_trim_excerpt($text) { $text = trim($text,'[download]Here is the amazing download box[/download]'); $text = trim($text,'[Youtube=link]'); return $text; } add_filter('get_the_excerpt', 'cedcommerce_trim_excerpt');It will remove the unwanted text from your post exceprt
ThanksForum: Fixing WordPress
In reply to: Text in list of post don't fit to frameAs I’m seeing now your content in displayed fine (as you said). I don’t know what you did, but it’s fine now. Why you need to remove that code now because whatever you did, the “top:109px;” is not effecting anymore. Whatever you did due to that the following code is now added:
#main .post-loop-content .entry-content { left: -1px; top: 0; }which lets disable the “top:109px;” due to higher priority.
But if you need to remove that code, it should be possibly in header.php or have a look at functions.php also. If not found yet, then you can write the following code in your style.css:#main .post-loop-content .entry-content { top: 0px !important; }Hope everything will be fine.
Forum: Fixing WordPress
In reply to: T_ENDWHILE errorHello dnbl00,
You have not closed if condition in the code. Use following code:<div class="carousel-inner" role="listbox"> <?php if ( have_posts() ) : while ( have_posts() ) : the_post(); $i++; ?> <?php if ($i==1) { ?> <div class="item active"> <?php } else { ?> <div class="item"> <?php if ( has_post_thumbnail ()) { $url = wp_get_attachment_url( get_post_thumbnail_id()); ?> <img src="<?php echo $url; ?>" alt="<?php the_title(); ?>"> <?php } ?> <div class="container"> <div class="carousel-caption"> <h1><?php the_title(); ?></h1> <p><a class="btn btn-lg btn-primary" href="<?php the_permalink(); ?>" role="button">Read more</a></p> </div> </div> </div> <?php }?> <?php endwhile; endif; ?>Forum: Fixing WordPress
In reply to: changing permalink for a custom postI have asked for your code snippet. Please provide it.
Please try this in your register_post_type() function:
‘rewrite’ => array( ‘slug’ => āYOUR_CUSTOM_POST_TYPE_SLUGā ),This is working fine for me. Hope will help you too.
Thanks