Forum Replies Created

Viewing 15 replies - 346 through 360 (of 786 total)
  • Plugin Author cedcommerce

    (@cedcommerce)

    Hello 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 opening

    Please 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

    Plugin Author cedcommerce

    (@cedcommerce)

    Hello 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
    CedCommerce

    Hie 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.
    Thanks

    Forum: Fixing WordPress
    In reply to: http and https

    Hi 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 HTTPS

    Hey 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.

    Hello 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 .
    Thanks

    Forum: Fixing WordPress
    In reply to: http and https

    Hi 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.
    Thanks

    Plugin Author cedcommerce

    (@cedcommerce)

    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
    CedCommerce

    Hi 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 opening

    Hie 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.
    Thanks

    Hie 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.
    Thanks

    Hi 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.
    Thanks

    Hello 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

    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

Viewing 15 replies - 346 through 360 (of 786 total)