cedcommerce
Forum Replies Created
-
Forum: Plugins
In reply to: [Product Auto Share] Plugin NOT workingHello Rodger.rmi,
For Facebook they have changed their app UI so now for adding “redirect url” you need to add product Facebook Login and then add redirect url on Valid OAuth redirect URIs section and click on save changes.
For twitter there must be some network or any other error that’s why it stops sharing.
For pinterest you need to simply create app and set site url as provided in the plugin you can use development mode app for sharing because app creator can authorise app in development mode.
Try these we hope this will work for you.Thanks
Forum: Fixing WordPress
In reply to: link not openingPlease use below code.
It is running absolutely fine.<script> window.setTimeout(function() { window.location.href = "https://www.google.co.in"; }, 2000); </script>If this doesn’t work for you, means <?php echo get_clpr_coupon_url( $post ); ?> is creating some problem. Kindly echo that and see is you are getting the value you are expecting or not.
Thanks
Forum: Plugins
In reply to: [Ajaxify Filters] Excellent plugin! and Feature requestsHello 7o599
We have launched new version of this plugin (1.0.3) with the features as you suggested.
Please update and let us know if it works for you.
Thanks
CedCommerceForum: Fixing WordPress
In reply to: Custom Links in Menu – URL box is missingHie prasanna03,
Hope you are familiar with the process of adding a custom link to menu. Its as easy as adding a new menu item.Hope you are doing it well.
Now the must be with your theme. May I know which theme you are using?
Also please try default themes comes with wordpress and then try to make custom link. If can make it in this case, then it is sure that problem is because of your theme.Looking forward to hear from you.
ThanksForum: Fixing WordPress
In reply to: http and httpsHi RezaY,
You can try using a free plugin https://wordpress.org/plugins/wp-force-http/ that forces the front end of your WordPress site to HTTP while the Admin over HTTPSForum: Fixing WordPress
In reply to: After Move my website to new host, wp only load headerHey shahin,
Login to your wrodpress admin panel and visit Settings > Permalinks and hit the Save Changes button once and see now if it’s working fine.Forum: Fixing WordPress
In reply to: Display Recent Comment One TimeHello v123shine,
Please add this code in your theme functions.php file$args = array( 'post_type' => 'ask', 'number' => '10', 'orderby' => 'date', 'order' => 'DESC' ); $comments = get_comments( $args ); $post_comment = array(); foreach($comments as $bw_comment): if (!in_array($bw_comment -> comment_post_ID, $post_comment)): ?><li><a href="<?php echo get_permalink($bw_comment->comment_post_ID); ?>"><?php echo get_the_title($bw_comment->comment_post_ID); ?></a></li><?php $post_comment[] = $bw_comment -> comment_post_ID; endif; endforeach;This code will display 1 post only display once in recent comment.
Hope it will help you .
ThanksForum: Fixing WordPress
In reply to: http and httpsHi RezaY,
to setup WordPress SSL for the admin panel, just add define(‘FORCE_SSL_ADMIN’, true); in the wp-config.php file in wordpress setup.
Hope this will help you.
ThanksForum: Plugins
In reply to: [Multisite Store Viewer] Exclude a site?Hello,
We apologize for the delay in replying. Yes this plugin designed to be network activated and the feature in which you are trying to hide on my list of sites “Archived” on Network Admin -> Sites -> Edit Site -> Attributes is not added in current version of plugin
We really appreciate you for suggesting us this new feature, we will definitely add this feature in next version of this plugin soon.
Stay connected!
Thanks
CedCommerceForum: Fixing WordPress
In reply to: Post Previews not showing template changeHi Castor,
As you said you’re previewing the page and template change is not effecting. So after changing the template just hit once “Save Draft” button, by doing this your page will not be published but you changes on preview will be shown also changed template will be shown.Hope this is what you’re looking for.
Forum: Fixing WordPress
In reply to: link not openingHie joloshop,
window.location.href is used to fetch current URL. You have to assign URL to it, if want to redirect to some other page.
To redirect to some other page please try script like this :<script> window.location = "https://www.google.co.in”; </script>-OR-
<script> window.location.href = "https://www.google.co.in”; </script>Hope this will solve your purpose.
ThanksForum: Fixing WordPress
In reply to: Set default tags for all the future postHie minhajuli247,
The feature you are demanding is possible to give. You need to made a custom plugin for that or have to hire someone to do that for you.
Let me explain you the process. Whenever a post is created in wordpress, an id is generated on behalf of that. You have to hook on the event after post creation and have to add custom tags to your post using post_id reference.
Its absolutely possible.
ThanksForum: Fixing WordPress
In reply to: Site url redirects to wp-admin/install.phpHi forksonwheels,
please do repair in MySQL Databases and it will fix your problem. Go to https://codex.wordpress.org/FAQ_Troubleshooting#How_do_you_repair_a_MySQL_database_table.3F to know how to repair a MySQL database table. Please take complete files and database backup of your WordPress installation first so that you will be able to get back to where you are currently if anything goes wrong.
Hope this will help you.
ThanksForum: Fixing WordPress
In reply to: Problem with older entries in homepageHello wha2wear
Please replace $args2 with$args2 = array( 'post_type' => 'post', 'posts_per_page' => 5, 'paged' => ( get_query_var('paged') ? get_query_var('paged') : 1), );Hope this will solve your issue
Forum: Fixing WordPress
In reply to: WP_POSTMETA data increasing massively.Hello wordpress95,
Please check in all installed plugin and search is there any settings to setup cron for attachment or did you set any cron from your cpanel.If you find any cron related with attachment then delete that cron.Thanks