Search Results for 'php'

Home Forums Search Search Results for 'php'

Viewing 15 results - 1,021 through 1,035 (of 2,005 total)
  • Author
    Search Results
  • #69504
    Sonal S SinhaSonal S Sinha
    Moderator
    • Topics: 0
    • Replies: 31297
    • Total: 31297
    Member since: August 16, 2013

    Hi Mel,

    Kindly go to functions.php and remove this code from there:

    wp_enqueue_script( 'skt_white-smooth-scroll', get_template_directory_uri() . '/js/smooth-scroll.js', array('jquery'),null );

    Regards,
    Dave

    #69456
    Sonal S SinhaSonal S Sinha
    Moderator
    • Topics: 0
    • Replies: 31297
    • Total: 31297
    Member since: August 16, 2013

    Hi Stephen,

    You need to change the code in page.php

    Kindly send us your URL of the site and WordPress admin details (Username & Password) via sktthemes.net/contact

    Please mention this forum URL while replying so that we understand what needs to be done.

    Regards,
    Dave

    #69355
    DanielDaniel
    Member
    • Topics: 6
    • Replies: 10
    • Total: 16
    Member since: April 5, 2017

    i checked the php.ini file in my root directly from the cpanel…here it is,

    memory_limit = 256M
    upload_max_size = 64M
    post_max_size = 64M
    upload_max_filesize = 64M
    max_execution_time = 300
    max_input_time = 1000

    Then i contacted my host, i told them wat u had advised and they replied

    “well,i do not see any line here that can affect updating a file or publishing it, or they point out which line is changed”

    Its still not working,

    #69287

    In reply to: Themeoption

    Sonal S SinhaSonal S Sinha
    Moderator
    • Topics: 0
    • Replies: 31297
    • Total: 31297
    Member since: August 16, 2013

    Hi Krishna,

    Kindly ask hosting to increase the limits of your server. This is a very common issue which is caused mostly in shared hosts due to them limiting your query sizes, upload size and query execution time.

    Following are the details written which you need to ask your hosting to get them raised in PHP.ini

    memory_limit = 256M
    upload_max_size = 64M
    post_max_size = 64M
    upload_max_filesize = 64M
    max_execution_time = 300
    max_input_time = 1000

    Regards,
    Brad

    #69279
    Sonal S SinhaSonal S Sinha
    Moderator
    • Topics: 0
    • Replies: 31297
    • Total: 31297
    Member since: August 16, 2013

    Hi Daniel,

    Kindly ask hosting to increase the limits of your server. This is a very common issue which is caused mostly in shared hosts due to them limiting your query sizes, upload size and query execution time.

    Following are the details written which you need to ask your hosting to get them raised in PHP.ini

    memory_limit = 256M
    upload_max_size = 64M
    post_max_size = 64M
    upload_max_filesize = 64M
    max_execution_time = 300
    max_input_time = 1000

    Regards,
    Dave

    #69278
    Sonal S SinhaSonal S Sinha
    Moderator
    • Topics: 0
    • Replies: 31297
    • Total: 31297
    Member since: August 16, 2013

    Hi Widiana,

    Kindly ask hosting to increase the limits of your server. This is a very common issue which is caused mostly in shared hosts due to them limiting your query sizes, upload size and query execution time.

    Following are the details written which you need to ask your hosting to get them raised in PHP.ini

    memory_limit = 256M
    upload_max_size = 64M
    post_max_size = 64M
    upload_max_filesize = 64M
    max_execution_time = 300
    max_input_time = 1000

    Regards,
    Brad

    #69176

    In reply to: Architect Pro

    Sonal S SinhaSonal S Sinha
    Moderator
    • Topics: 0
    • Replies: 31297
    • Total: 31297
    Member since: August 16, 2013

    Hi Derek,

    Kindly add this code in custom CSS Box:

    @media screen and (max-width:767px) {
    .header{background:#000000 !important;}
    .logo{background:none !important;}
    }

    .sitenav ul li{text-transform:inherit !important;}

    For the inner page slider you need to change code in header.php

    Kindly send us your URL of the site and WordPress admin details (Username & Password) via sktthemes.net/contact

    Please mention this forum URL while replying so that we understand what needs to be done.

    Regards,
    Dave

    #68980

    Topic: testimonial

    in forum Gravida Support
    Pieter DuysPieter Duys
    Member
    Member since: October 21, 2015

    I am getting the following error on my testimonials plugin.

    Notice: Undefined variable: post_id in /home/[….]/public_html/wp-content/themes/gravida-pro/inc/custom-functions.php on line 616

    The content appears correctly thought, but the error message is visible.
    I am using a child theme – could that be the issue?
    I am using shortcode: [tetimonials]

    When I use any of the shortcodes contained on the help section, like: [testimonials-box col=”1″ show=”1″] – nothing displays.

    Also, if I create a testionials page there is no option to select a “Testimonials” template from the dropdown.

    Any idea how I can fix these issues?

    #68788
    Sonal S SinhaSonal S Sinha
    Moderator
    • Topics: 0
    • Replies: 31297
    • Total: 31297
    Member since: August 16, 2013

    Hi Derek,

    1. You don’t need to sign up there. You can upload your screenshot on dropbox also and share the URL with us.

    2. Kindly go to sktframe/core-pageheader.php line number 40 to 58

    Replace the code with this code:

     <!--page_head class END-->
        <?php } ?>
    
       <?php if (is_single()) {?>
       <?php 
       $newimgbg = get_post_meta( $post->ID, 'post_head', true ); 
       $headshort = get_post_meta( $post->ID, 'headercode', true );
       ?>
      <!--Header POST-->
          <div class="<?php if(!empty($complete['hide_postheader'])){ echo 'hide-header';} ?>">
        <?php
      if(!empty($headshort)){
      ?>  
        <div class="shorthead"><?php $hdrtp = html_entity_decode($headshort); $hdrtp = stripslashes($hdrtp); echo do_shortcode($hdrtp); ?></div>
        <?php }
      
      elseif ( has_post_thumbnail() ) {
      ?>
        <div class="page_head"><?php the_post_thumbnail(); ?></div>
      <?php
      }
      
      else {?>
          <div class="post_head <?php if($complete['postheader_bg_image']){ ?>post_head_bg<?php } ?>"></div>
          <?php } ?>
       </div>
          <!--page_head class END-->

    Regards,
    Brad

    #68652

    In reply to: Old Marvin version

    ChristophChristoph
    Participant
    • Topics: 3
    • Replies: 11
    • Total: 14
    Member since: August 9, 2016

    location of the problem file:
    containerfile:C:\Users\micro\Downloads\marvin_theme (1).zip
    file:C:\Users\micro\Downloads\marvin_theme (1).zip->skt-marvin/inc/includes/class-options-sanitize.php

    BR Christoph

    #68644

    In reply to: Add link to home page

    Sonal S SinhaSonal S Sinha
    Moderator
    • Topics: 0
    • Replies: 31297
    • Total: 31297
    Member since: August 16, 2013

    Hi Saqib,

    You can add it to index.php

    Regards,
    Dave

    #68640
    Sonal S SinhaSonal S Sinha
    Moderator
    • Topics: 0
    • Replies: 31297
    • Total: 31297
    Member since: August 16, 2013

    Hi Derek,

    Add this code in Custom CSS:

    .entry-thumbnail img{height: auto; max-width: 100%;}
    
    .page-item-17461 > a, .page-item-17463 > a, .page-item-17465 > a {
        pointer-events: none !important;
    }
    
    @media (max-width: 330px) {
    .logo h2, .logo h1, .logo h2 a:link, .logo h2 a:visited, .logo h1 a:link, .logo h1 a:visited, .logo h2 a:hover, .logo h1 a:hover{font-size: 34px;}
    }

    To display featured image on individual blog post page edit following files:
    rightsidebar_single_template.php
    leftsidebar_single_template.php
    nosidebar_single_template.php
    fullwidth_single_template.php

    Goto line number 39 and add below code just after “<!–POST INFO END–>”

    <?php if ( has_post_thumbnail() && ! post_password_required() && ! is_attachment() ) : ?>
        <div class="entry-thumbnail">
          <?php the_post_thumbnail(); ?>
        </div>
    <?php endif; ?>

    Regards,
    Brad

    #68572

    In reply to: Installation Problem

    Sonal S SinhaSonal S Sinha
    Moderator
    • Topics: 0
    • Replies: 31297
    • Total: 31297
    Member since: August 16, 2013

    Hi Thomas,

    The theme that means hasn’t been installed properly and the PHP.ini issue isn’t resolved and hence the theme is partial uploaded only which leads to the error you get after you activate it.

    Kindly send us your URL of the site and WordPress admin details (Username & Password) via sktthemes.net/contact
    Please mention this forum URL while replying so that we understand what needs to be done.

    Regards,
    Dave

    #68568
    Sonal S SinhaSonal S Sinha
    Moderator
    • Topics: 0
    • Replies: 31297
    • Total: 31297
    Member since: August 16, 2013

    Hi Tran,

    Kindly go to category.php and remove the text category from there.

    For post navigation text:

    Go to Appearance>>Theme Option>>Basic Setting>>Custom CSS Box

    Add this code there:

    h1.screen-reader-text{display:none;}

    Regards,
    Brad

    #68506

    In reply to: Installation Problem

    ThomasThomas
    Member
    • Topics: 1
    • Replies: 2
    • Total: 3
    Member since: April 7, 2017

    ok. I found what ten issue was. I had to up the allowed upload size in my php.ini. so I was able to install it. here’s My Issue.

    This is an upgrade from the free version for me. When I activate the Pro version, It goes to the generic BeFit website with all the generic images. none of my previous info, images, pages etc…. are visible, and… I can access the wp-login.php page. when I login, it just takes me to the generic website. I can’t access the control panel at all. it’s not there. I had to literally loginto my hosting account in orsder to switch back to the free layout in which everything worked like normal again. PLEASE HELP!!!!!!!

Viewing 15 results - 1,021 through 1,035 (of 2,005 total)