Search Results for 'php'

Home Forums Search Search Results for 'php'

Viewing 15 results - 1,711 through 1,725 (of 2,005 total)
  • Author
    Search Results
  • #21704

    In reply to: SKT Magazine Pro

    KarelKarel
    Member
    • Topics: 1
    • Replies: 4
    • Total: 5
    Member since: January 30, 2016

    I don’t have CM Answers but I also get this:

    Warning: Cannot modify header information – headers already sent by (output started at /mnt/webe/d2/66/52291766/htdocs/WordPress_03/wp-content/themes/skt-magazine-pro/functions.php:1561) in /mnt/webe/d2/66/52291766/htdocs/WordPress_03/wp-login.php on line 387 Warning: Cannot modify header information – headers already sent by (output started at /mnt/webe/d2/66/52291766/htdocs/WordPress_03/wp-content/themes/skt-magazine-pro/functions.php:1561) in /mnt/webe/d2/66/52291766/htdocs/WordPress_03/wp-login.php on line 400 Warning: Cannot modify header information – headers already sent by (output started at /mnt/webe/d2/66/52291766/htdocs/WordPress_03/wp-content/themes/skt-magazine-pro/functions.php:1561) in /mnt/webe/d2/66/52291766/htdocs/WordPress_03/wp-includes/pluggable.php on line 955 Warning: Cannot modify header information – headers already sent by (output started at /mnt/webe/d2/66/52291766/htdocs/WordPress_03/wp-content/themes/skt-magazine-pro/functions.php:1561) in /mnt/webe/d2/66/52291766/htdocs/WordPress_03/wp-includes/pluggable.php on line 956 Warning: Cannot modify header information – headers already sent by (output started at /mnt/webe/d2/66/52291766/htdocs/WordPress_03/wp-content/themes/skt-magazine-pro/functions.php:1561) in /mnt/webe/d2/66/52291766/htdocs/WordPress_03/wp-includes/pluggable.php on line 957 Warning: Cannot modify header information – headers already sent by (output started at /mnt/webe/d2/66/52291766/htdocs/WordPress_03/wp-content/themes/skt-magazine-pro/functions.php:1561) in /mnt/webe/d2/66/52291766/htdocs/WordPress_03/wp-includes/pluggable.php on line 1228

    And i’m unable to login on my website. I have to change the theme inside the database to fet access…

    #21672
    Johann RippeJohann Rippe
    Member
    Member since: January 7, 2016

    Hi Shri,
    Hope you doing well.

    http://www.oran-g.co

    I’ve been trying to find out why my post has an extra blank space just under the logo and navBar. http://oran-g.co/index.php/2016/02/04/pilot/

    second, when I scroll down from the slider to my Portafolio de Servicios (section 1) it has like a bump where the title Portafolio de Servicios suddenly disappears. http://www.oran-g.co

    #21668
    JeremyJeremy
    Member
    Member since: February 4, 2016

    I’d like to change the header text. Specifically “Today’s Special” to “Our Menu” – I’ve attempted altering the option.php file but had no luck there.

    #21628
    MarianneMarianne
    Member
    • Topics: 1
    • Replies: 2
    • Total: 3
    Member since: February 3, 2016

    Hi Shri,

    I’ve already done that – my Twitter feed is currently on the left side of the page, because my Sidebar is on the left (according to the Side Bar Page Template). I want the twitter feed on the right side – so how do I get the sidebar to be on the right, and not on the left? I don’t know how to create a new php template?

    http://www.debonaireevent.com/contact-us/

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

    Hi Robert,

    Kindly go to index.php and remove the anchor tag

    For read more buttons
    Kindly go to Appereance>>Theme Option>>Basic Setting>>Custom CSS Box

    Add this css code

    .welcome_text .one_fourth .read{display:none !important;}

    Regards,
    Shri

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

    Hi Andreas,

    How to manage our trainers see screenshot below
    sktthemesdemo.net/documentation/skt-fitness-doc/assets/img/7.jpg

    For the What We Do Boxes:
    Kindly go to Appearance>Theme Options>Basic Settings>Custom CSS box:
    And paste this css code in custom box

    #services-box { min-height:375px; vertical-align:top;}

    For Read More
    Kindly go to index.php to change read more buttons

    Regards,
    Shri

    #21530
    Stuart FarrimondStuart Farrimond
    Member
    • Topics: 13
    • Replies: 21
    • Total: 34
    Member since: November 9, 2015

    It’s ok, I have been able to defer the scripts from loading by adding the following to the end of functions.php:

    // Defer Javascripts
    // Defer jQuery Parsing using the HTML5 defer property
    if (!(is_admin() )) {
        function defer_parsing_of_js ( $url ) {
            if ( FALSE === strpos( $url, '.js' ) ) return $url;
            if ( strpos( $url, 'jquery.js' ) ) return $url;
            // return "$url' defer ";
            return "$url' defer onload='";
        }
        add_filter( 'clean_url', 'defer_parsing_of_js', 11, 1 );
    }

    For anyone else wondering how to prevent the ‘jump’ that happens when the images for the slider load, the following change can also be made in functions.php:

    Change

    <?php if ( (of_get_option('innerpageslider', true) != 'hide') || is_home() || is_front_page() ) { ?>
    			jQuery(window).load(function() {
            jQuery('#slider').nivoSlider({

    to

    <?php if ( (of_get_option('innerpageslider', true) != 'hide') || is_home() || is_front_page() ) { ?>
    			jQuery(function() {
            jQuery('#slider').nivoSlider({

    This will make the slider appear as soon as the first image has loaded, rather than wait for them all to load

    #21410
    Patrick LewisPatrick Lewis
    Member
    • Topics: 12
    • Replies: 15
    • Total: 27
    Member since: October 29, 2015

    Hi Shri, if i change custom-functions.php, i will lose this change when there will be an update of the theme?

    As for the info, i was talking about the form with shortcode [contactform to_email=”[email protected]” title=”Contactez-nous”]

    The shortcode provide the info in english even though my wordpress installation is in french

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

    Hi Patrick,

    Kindly go to custom-functions.php and find “Gallery”, search for the All and replace it with french language.

    For Contact Info

    Kindly go to Appereance>>Theme Option>>Footer and replace the info with french laguage

    Regards,
    Shri

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

    Hi Teresa,

    Kindly use plugin PHP Code Widget and paste this code:

    <?php echo do_shortcode(‘[time_table]
    [time_table_row title=”EVENTS” start=”DATE”]
    [time_table_row title=”Wedding Ceremony” start=”2016-09-16″]
    [time_table_row title=”Wedding Rehearsal” start=”2016-09-16″]
    [time_table_row title=”Girls Weekend in California” start=”2016-09-16″]
    [time_table_row title=”Bachelor Party” start=”2016-09-16″]
    [/time_table]’); ?>

    Regards,
    Shri

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

    Hi Alex,

    You can add this code in header.php

    <a href="Your External Link"><img src="Logo Image Path" /></a>

    Regards,
    Shri

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

    Hi Marco,

    Kindly go to custom-functions.php and find view all.

    Regards,
    Shri

    #20980

    In reply to: SKT Wedding Pro

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

    Hi Raven,

    Kindly use this plugin: https://wordpress.org/plugins/php-code-widget/

    and paste this code

    <?php echo do_shortcode(‘[time_table]
    [time_table_row title=”EVENTS” start=”DATE”]
    [time_table_row title=”Wedding Ceremony” start=”2016-09-16″]
    [time_table_row title=”Wedding Rehearsal” start=”2016-09-16″]
    [time_table_row title=”Girls Weekend in California” start=”2016-09-16″]
    [time_table_row title=”Bachelor Party” start=”2016-09-16″]
    [/time_table]’); ?>

    Regards,
    Shri

    #20884
    PiotrPiotr
    Member
    • Topics: 1
    • Replies: 2
    • Total: 3
    Member since: January 30, 2016

    If I deleted this line
    <iframe src=<?php echo of_get_option('googlemap', true); ?> width=98% height=300 frameborder=0></iframe>
    in editor in template contact all is good.

    My option is correct?

    #20807

    In reply to: Lawzo Pro Theme Slider

    LibertyLiberty
    Participant
    • Topics: 19
    • Replies: 21
    • Total: 40
    Member since: January 22, 2016

    I did that but it was only showing the first 5 slides. I did some digging around and found this line of code in the theme header.php file under the “home-slider” section: for ($i=1; $i<6; $i++)

    I copied the file into my child them and changed the code to read: for ($i=1; $i<10; $i++)

    That fixed my problem. Thanks!

Viewing 15 results - 1,711 through 1,725 (of 2,005 total)