Forum Replies Created

Viewing 15 replies - 631 through 645 (of 786 total)
  • you can delete the shipping you previously set for rest of the world, after clicking on remove you need to press the save changes button.

    you can also achieve this by setting the selling and shipping locations to specific countries from woocommerce > settings > general.

    hope this will help you.
    Thanks

    Hello schrodi77
    I know you have not changed anything but you can give it a try ,recreate your “taxonomy-[taxonomy_name].php” and save permalinks.Be careful there should not be any space in name.

    Yeah it’s possible to fetch all the posts after today, but make sure that you have published those posts for future date.
    try the following code:

    <?php
    query_posts(
     array(
      'post_type'       => 'movies',
      'post_status'     => 'future',
     )
    );
    ?>

    Use the above query posts with the given parameter and fetch the posts.
    You’ll get all the posts, published for after today.

    Please try to change site URL from wp-config.php file. Connect to your website using an FTP client. You will find wp-config.php file in your site’s root directory. Download it and add these two lines to the file and replace yoursite.com with your own domain.
    define(‘WP_HOME’,’http://yoursite.com&#8217;);
    define(‘WP_SITEURL’,’http://yoursite.com&#8217;);
    Save and upload it back to your web server. Now try to access your WordPress site. If you still can not access your site, then try to add your domain with www prefix. If problem still exists, then it must be due to some plugin. Did you activate any plugin recently or did you update plugin right before this error happened? If yes, delete that plugin’s folder from wp-content/plugins/. If no, then please take backup of all plugins and delete all. Then download the .htaccess file as a backup using FTP and delete it. Now try to access the site. If error is gone, then try to upload plugins one by one and access different pages in site. You will find the plugin that created the issue.

    As you’re saying that I need a post that will be published in future but you want to need it now.
    The code I’ve provided earlier output blank because you don’t have a post right now published with that date. If you want to show all the future
    movies, you can publish a post of upcoming movies and assign them a category and can fetch those posts by that category.

    Forum: Fixing WordPress
    In reply to: Image Slider

    It seems there is some plugin which is hiding the plugins option. But if you’ve FTP of your site, you can visit the “wp-content -> plugins”
    folder, and see the plugins listed in that folder. There may be some plugin which is hiding the plugins option in your dashboard.
    Make sure that you’re logged-in as an admin, because it’s possible that plugins options are not showing due to capabilities of logged-in users.
    Also make sure that you’re not running a multi site, if you are, then logged-in as super admin and go to network setting and see the setting
    something like Enable Menus. Toggle the checkbox setting and save changes. And see if it’s working.

    Plugin Author cedcommerce

    (@cedcommerce)

    Hello Elahehone,

    Thanks for using and appreciating “Ajaxify-filters”.

    As you are saying, only one widget shows, that might be because your site is not fulfilling other widgets requirements. For example if you are using Tag-cloud widget and has not setup any product tag, it would not show up in frontend. Can you name the widget that comes up nicely in frontend?

    Thanks
    CedCommerce

    Forum: Fixing WordPress
    In reply to: Foreground colours

    Hello Talared

    You can change your menu background from style.css line number 284

    .top-navbar, .main-navbar {
        background-color: #121212;
    }

    and to make your videos like “most viewed todays” section you have to comment/change background-color from here

    .recent-posts .post-content {
        background-color: #181818 !important;
        min-height: 157px;
    }
    .recent-posts .post-content {
        background-color: #1f1f1f;
        border-radius: 0 0 3px 3px;
        padding: 10px 15px;
    }

    Plugin Author cedcommerce

    (@cedcommerce)

    Hello again,

    We have checked and this can be achievable in current version of plugin itslef, if you want to hide specific elements in PDF with css class then you can write custom css code in WP Advanced PDF Setting > Body > Custom Css textarea.
    For ex : If you want to hide elements having class “hide” then add
    .hide{display:none;} in custom css text area then elements having class hide will not shown on generated pdf.

    Thanks
    CedCommerce

    Plugin Author cedcommerce

    (@cedcommerce)

    Hi aliemami & SajadDP,

    We checked and our plugin is working fine. For Persian and Arabic language you have to upload Persian and Arabic supported Font(Like ae_AlArabiya, ae_Furat ) in .ttf format from the given setting and then check it again.

    It will surely not work with “Times New Roman” as this font support English language

    Thanks
    CedCommerce

    Plugin Author cedcommerce

    (@cedcommerce)

    Hello All,

    Apology for inconvenience that you had faced, we will surely look into it and fix this problem asap

    Thanks
    CedCommerce

    Plugin Author cedcommerce

    (@cedcommerce)

    Hello fOu,

    Thanks for your appreciation.

    Your suggestion is welcome and soon we will surely add this feature on our next release.

    Please stay connected!

    Thanks
    CedCommerce

    Plugin Author cedcommerce

    (@cedcommerce)

    Hello All,

    This feature has been implemented in new version. We will launch it soon with some other needful features

    Thanks
    CedCommerce

    Hi amurado,
    Please try the following code:

    <?php
     query_posts(
      array(
       'post_type' => 'post',
       'orderby' => 'meta_value_num',
       'order' => 'DESC',
       'meta_query' => array(
        array(
         'value'         => date('Ymd', strtotime("today")),
         'compare'       => '>=',
         'type'          => 'DATE'
        )
       )
      )
     );
    ?>

    Hope this will help you.

Viewing 15 replies - 631 through 645 (of 786 total)