Search Results for 'php'

Home Forums Search Search Results for 'php'

Viewing 15 results - 1,786 through 1,800 (of 2,007 total)
  • Author
    Search Results
  • #16056
    Sonal S SinhaSonal S Sinha
    Moderator
    • Topics: 0
    • Replies: 31308
    • Total: 31308
    Member since: August 16, 2013

    Hi,

    Kindly go to header.php

    on line no. 123 to 130 replace this code

    <div class=”slider-wrapper theme-default”><div id=”slider” class=”nivoSlider”>
    <?php
    foreach( $slAr as $sv ){
    $n++; ?> “>
    ” alt=”<?php echo esc_attr($sv[‘image_title’]);?>” title=”<?php echo esc_attr(‘#slidecaption’.$n) ; ?>” />
    <?php
    $slideno[] = $n;
    }
    ?>
    </div>

    Regards,
    Shri

    GianniGianni
    Member
    Member since: December 3, 2015

    good morning,
    I purchased the theme skt befit, install and custom of local server (easyphp), completed the site locally I went to install it on the server online via the plugin “Duplicator” with whom I never had problems, but with the theme skt befit pro, perderde all settings, colors, logo, menus, etc .. and shows the default template, and also trying to customize it again new server online does not take the settings. How should I do? What’s the matter?
    I also tried to override the theme folder via FTP but nothing has changed.

    I would not redo the site again…

    Thank you

    #15912
    Sonal S SinhaSonal S Sinha
    Keymaster
    • Topics: 10
    • Replies: 6995
    • Total: 7005
    Member since: June 12, 2013

    We have an arrow in SKT White Pro already. Yes of course it can be added. You can add it in header.php under the slider image or above it with z-index and negative margin via CSS.

    In case you want us to do it then it will be chargeable (very nominal). Send us email then: [email protected]

    Regards,
    Shri

    #15767

    In reply to: Sticky Header

    Frederic DesclosFrederic Desclos
    Member
    • Topics: 15
    • Replies: 45
    • Total: 60
    Member since: July 20, 2015

    Just add this to the function.php of your child theme

    #15639

    In reply to: Thumbnails

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

    Hi,

    Yes we will have to remove the code from single.php
    Are you comfortable with doing it yourself if we send instructions or else you can email us: [email protected]
    your WordPress admin details and URL of the site

    Regards,
    Shri

    #15638

    In reply to: Thumbnails

    Senzelwe MzilaSenzelwe Mzila
    Member
    • Topics: 0
    • Replies: 2
    • Total: 2
    Member since: November 27, 2015

    Hi I need some assistance as well.

    I want to remove featured images from appearing inside posts. I am using your skt girlie pro, version.

    I have searched for this line of code under the theme editor < ?php if (has_post_thumbnail() ) the_post_thumbnail(); ?>

    and cannot find it.

    Kindly assist.

    #15569

    In reply to: Slider to slide

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

    Hi,

    It will be custom work within header.php to remove the nivo slider script and then we have to replace it with cyclone slider 2.

    Will try to add it like a functionality.

    Give me 3 days.

    Regards,
    Shri

    #15478

    In reply to: Sticky Header

    Frederic DesclosFrederic Desclos
    Member
    • Topics: 15
    • Replies: 45
    • Total: 60
    Member since: July 20, 2015

    Here is how I dealt with it :

    I’m using a child theme. In the child theme function.php I added the following :

    function dcs_media_css_hook(){
    	
    	?>
        	
        	<script>
    
    			jQuery(window).bind('scroll', function() {
    				<?php  if ( is_home() || is_front_page() ) {?>
    					var navHeight = jQuery( window ).height() - 0;
    				<?php } else { ?>
    					var navHeight = 90;
    				<?php } ?>
    		<?php if( of_get_option('headstick',true) != true) { ?>
    		if (jQuery(window).scrollTop() > navHeight) {
    			jQuery('body.home .header').addClass('fixed');
    			jQuery('body.page .header').addClass('fixed');
    			jQuery('body.single .header').addClass('fixed');
    			jQuery('body.archive .header').addClass('fixed');
    			jQuery('body.category .header').addClass('fixed');
    		}else {
    			jQuery('body.home .header').removeClass('fixed');
    			jQuery('body.page .header').removeClass('fixed');
    			jQuery('body.single .header').removeClass('fixed');
    			jQuery('body.archive .header').removeClass('fixed');
    			jQuery('body.category .header').removeClass('fixed');
    		}
    		<?php } ?>
    });
    			jQuery.noConflict();
    			jQuery(window).load(function() {
            jQuery('#slider').nivoSlider({
            	effect:'<?php echo of_get_option('slideefect','fade'); ?>', //sliceDown, sliceDownLeft, sliceUp, sliceUpLeft, sliceUpDown, sliceUpDownLeft, fold, fade, random, slideInRight, slideInLeft, boxRandom, boxRain, boxRainReverse, boxRainGrow, boxRainGrowReverse
    		  	animSpeed: <?php echo of_get_option('slideanim',500); ?>,
    			pauseTime: <?php echo of_get_option('slidepause',3000); ?>,
    			directionNav: <?php echo of_get_option('slidenav','true'); ?>,
    			controlNav: <?php echo of_get_option('slidepage','true'); ?>,
    			pauseOnHover: <?php echo of_get_option('slidepausehover','false'); ?>,
        });
    });
    		</script>
        <?php
    		
    	}
    
    function remove_sticky_parent_actions() {
    	remove_action('wp_head','media_css_hook');
    }
    
    add_action ('init','remove_sticky_parent_actions');
    
    add_action('wp_head','dcs_media_css_hook');
    
    #15418

    In reply to: Image on in one column

    Sonal S SinhaSonal S Sinha
    Keymaster
    • Topics: 10
    • Replies: 6995
    • Total: 7005
    Member since: June 12, 2013

    Right sidebar is widgetized so you can add an image widget.

    Under submenu etc would be like going inside header.php and tweaking codes.

    Regards,
    Shri

    #15255

    In reply to: Slider & Sticky menu

    Frederic DesclosFrederic Desclos
    Member
    • Topics: 15
    • Replies: 45
    • Total: 60
    Member since: July 20, 2015

    Hi Shri,

    I assume that if I could give you access to the code, you (or your coders) would go through some modifications of the existing php files… Just let me know what to change, I’ll code it. I don’t need nivo slider, I’ just don’t want the 75% of default image that shows up on inner pages 🙂 and sticky menu on all pages…

    Thanks in advance for your support

    #14758

    In reply to: HOME SLIDE

    Sonal S SinhaSonal S Sinha
    Keymaster
    • Topics: 10
    • Replies: 6995
    • Total: 7005
    Member since: June 12, 2013

    Hi,

    For 3 section to change to 2 we will have to change code in index.php and slider query couldn’t understand.

    Regards,
    Shri

    #14669
    Sonal S SinhaSonal S Sinha
    Keymaster
    • Topics: 10
    • Replies: 6995
    • Total: 7005
    Member since: June 12, 2013

    Try this one: https://wordpress.org/plugins/php-text-widget/

    Regards,
    Shri

    #14668
    Gregor RüdisüliGregor Rüdisüli
    Participant
    • Topics: 1
    • Replies: 2
    • Total: 3
    Member since: November 17, 2015

    Can you give me an alternative plugin? this is an very old Plugin and has security Problems.

    https://wordpress.org/support/view/plugin-reviews/linkable-title-html-and-php-widget?filter=1

    #14665
    Sonal S SinhaSonal S Sinha
    Keymaster
    • Topics: 10
    • Replies: 6995
    • Total: 7005
    Member since: June 12, 2013

    Hi,

    Use Linkable HTML PHP Widget plugin via Plugins>Add New

    And then once you do in Widget Area you get that widget.

    Add it instead of text widget and use this code:

    Regards,
    Shri

    #14605
    Henrik BrockmannHenrik Brockmann
    Member
    Member since: October 12, 2015

    Hello,

    i have to change the featured boxes. The problem is, that the icons are dissapearing if i change the text “Lorem ipsum…”. In older contributions theme-users telling that too. But what you told does not work.

    So i can make other Texts than “Lorem ipsum…” in the sites, but the icons are dissapearing always.

    The next problem is, that is not possible to change the Text “Read More”. In germany i have to change it into german language. I tryed to change it in the index-default.php. But after i changed it, the frontpage looked as always.

    So here the summery:

    1. How can i change the icons?
    2. How can i change the text “Lorem ipsum…” and “Read More”. Normally it hase to change when i change the index-default.php, where it is included. But that dont works.

    Please help me! I have to change this project!

    Thank you…

Viewing 15 results - 1,786 through 1,800 (of 2,007 total)