Forum Replies Created

Viewing 15 replies - 466 through 480 (of 786 total)
  • Plugin Author cedcommerce

    (@cedcommerce)

    Hello noempty
    We will check for the issue with cyrillic alphabet and reply here soon.
    Thank you

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

    Hi,
    Please go to https://codex.wordpress.org/Moving_WordPress and you will find solution for the issue. Thanks

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

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

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

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

    Hi 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

    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.

    Hie 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

    Plugin Author cedcommerce

    (@cedcommerce)

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

    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
    Thanks

    As 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 error

    Hello 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; ?>

    I 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

Viewing 15 replies - 466 through 480 (of 786 total)