cedcommerce
Forum Replies Created
-
Forum: Plugins
In reply to: [Recently viewed and most viewed products] How to use shortcode only?Hello Bangrobe
Actually in current version we have made shortcode just for the users who want to show recently viewed and most viewed products other than product page like any custom pages, cart page etc.
Of-course if someone like you want to use shortcode on product page then this will result in 2 sections.
We will consider it and update the plugin soon in order to make it work more flexible.
Thanks
CedCommerceForum: Fixing WordPress
In reply to: how to edit php functions of wordpress filesHello helix5
You can use DOM (http://php.net/dom)Forum: Fixing WordPress
In reply to: The page isn't redirecting properlyHello seconsol92,
This error could be resolved by deleting cookies from browser.
If this doesnt solves the issue u can follow these steps:-
Since you dont have access to the admin page you can connect to your website using an FTP client (filezilla).
Once you are connected to your site, you will find wp-config.php file in your site’s root directory. You need to download and edit this file using a text editor like Notepad. Simply add these two lines to the file and don’t forget to replace example.com with your own domain.define('WP_HOME','http://example.com'); define('WP_SITEURL','http://example.com');Save the page and upload the page to the server.
If this also doesnt resolves the issue try deactivating plugin that you have updated recently by going to wp-content/plugins/Hope these steps would help you.
Forum: Fixing WordPress
In reply to: Thumbnail images missing in photo galleriesHello GleamPhotography,
Add this code in theme functions.php filefunction update_post_thumbnail(){ $args = array( 'posts_per_page' => '', 'post_type' => 'post', 'post_status' => 'publish' ); $get_all_post = get_posts( $args ); foreach ($get_all_post as $all_post){ $post_thumbnail_id = get_post_thumbnail_id( $all_post -> ID ); set_post_thumbnail( $all_post -> ID, $post_thumbnail_id ); } } add_action( 'after_setup_theme', 'update_post_thumbnail' );Thanks
Forum: Fixing WordPress
In reply to: Can an SSL certificate cause issues with uptime?SSL has limited impact on web performance. The impact is 2% on network overhead and and 1% on CPU load. SSL makes website slow becuase client sends a request to the server in return before sending data sever sends his the public key to client in order to authenticate the client. After the client authenticate itself by sending his public key the server starts transmitting the the data.This process reduces the speed. SSL also uses different intermediate certificates that also reduces the speed. CLOUDFARE is working on it to limit the number of connection browser needs to make connection and hence reducing the number of session initiation handshakes that need be made.Rocket Loader is one of the example.
Forum: Fixing WordPress
In reply to: "rel='https://api.w.org/' json" website url is wrongHello Trishah,
This link is created by wordpress and the url “http://mysite.com/wp-json/” is created by your site’s home url.
Please see the home url of your site it should be “http://mysite.com/” or write the following code in your functions.php<?php echo get_home_url(); ?>And you’ll see the home url of your site it must be “http://mysite.com/”, that’s why the link url is “http://mysite.com/wp-json/”.
I would suggest that please don’t change it because this is the rest api response url created by wordpress, but if you want to change it then add the following code in your functions.php<?php add_filter( 'rest_url', 'your_function' ); function your_function( $url ) { return 'http://mysite.com/site/wp-json/'; } ?>And when you need to get the old url back then just remove the above code.
Forum: Fixing WordPress
In reply to: Remove the old "link" post typeHello doubleedesign,
To remove “WP had “Links” just edit the “Link Manager Enabled” field from 1 to 0 in /wp-admin/options.php in admin dashboard or through any database manager.Forum: Fixing WordPress
In reply to: increase upload file sizeHello lasha200,
Add this code in your theme functions.php file
function filter_upload_size_limit( $size ) {
$size = 1024 * 10000;
return $size;
}
add_filter( ‘upload_size_limit’, ‘filter_upload_size_limit’, 20 );
Hope this will help you.
ThanksForum: Fixing WordPress
In reply to: My Favicon is Left AlignedHello, the favicon of post author is wrapped inside a div having class “author-img”, so you can change the alignment by applying some sort of css using this class like.
.author-img{
float: right;
}Hope this will help you.
Forum: Fixing WordPress
In reply to: How to hide/delete post date?Hello Ramandeep Singh
You only need to comment single line which is “echo ‘<span class=”mh-meta-date updated”><i class=”fa fa-clock-o”></i>’ . get_the_date() . ‘</span>’ . “\n”;” nothing else.OR you can also do it through css you need to put following lines in style.css
.mh-meta-date.updated {
display: none;
}Forum: Fixing WordPress
In reply to: How to get (and pass) page parameter in custom templateHello toasterx
you can pass parameters in following ways in wordpress:
1-appending query variables to the URL
http://codex.wordpress.org/Function_Reference/add_query_arg
2- http://www.rlmseo.com/blog/passing-get-query-string-parameters-in-wordpress-url/
Hope this will help youHello Sitesforchrist,
We have successfully launched version 1.0.4 with new functionality of showing number of products per row and per page.
Hope this will work for you.
Thanks
CedCommerceForum: Fixing WordPress
In reply to: error wp-admin\includes\file.php on line 918Hello ichijang
The issue is probably due to index.php and .htaccess not being copied corectly (or at all). please follow the thread
https://wordpress.org/support/topic/fileperms-stat-failed
hope this will help youForum: Fixing WordPress
In reply to: Can't get lightbox to work!Different lightbox plugins have their different method to apply their functionalities.
First of all it’s required that the lightbox plugin should be enqueued after jquery.
And according to their requirement the attributes of image must be defined.
you can add some classes and attributes if needed in the post image from functions.php in the function “bavotasan_display_post_thumbnail”.
Can you please provide a link of your test site where you want to apply the lightbox.Forum: Fixing WordPress
In reply to: Show sidebars only when activeIf you’ve created the 3 column template. Then you just need to include the sidebars in you template only at the required place and remove elsewhere.
And assign the teplate to the required page from admin panel.
And your sidebar will be shown only when the 3 column template assigned page is rendering.