Search Results for 'shortcode'

Home Forums Search Search Results for 'shortcode'

Viewing 15 results - 646 through 660 (of 2,044 total)
  • Author
    Search Results
  • #104897

    In reply to: Magazine Pro

    Fay DixonFay Dixon
    Participant
    • Topics: 27
    • Replies: 99
    • Total: 126
    Member since: September 8, 2016

    And also every time i pick a theme its because of the things i can do with it. I’ve been disappointed so many times when there is a very cool feature but there’s no shortcode. I have to end up looking for the coding.

    There isnt even any short codes under the pages “Shortcodes within Theme” or “Shortcodes within Plugin”

    So on the theme in the content section(homepage), right under the heading “THE MAGAZINE. WHATS NEW?” theres a posts slider but i cant find it in the “Shortcodes” page. Not even in the shortcodes from a plugin. I inspected the page and copied the coding but nothing is showing.

    Could you please assist?

    Thank you

    #104847
    klubklub
    Member
    Member since: April 24, 2018

    Hi,
    I’m using Adventure Theme and have problem with posts-style shortcode:
    After I choose the category to display (ex. [posts-style3 show=”10″ cat=”wspomnienia” excerptlength=”24″]), on page are visible all categories, not only choosen one.

    Could you tell me what am I doing wrong?

    Below are screenshots, which show what I mean:

    https://ibb.co/i1hh4T
    https://ibb.co/htoddo
    https://ibb.co/gUsRW8

    #104812
    Anna BozhkoAnna Bozhko
    Participant
    Member since: January 15, 2018

    Good afternoon.
    I’m currently working on the paid SKT Spectacles theme and if I hide any section of 10 working now in the Theme Options – Service Boxes stopped showing up in frontpage except for the first.
    How can i fix this?
    http://i67377fe.beget.tech/

    p.s.
    I found a similar request but did not see the solution:
    March 28, 2018 at 12:59 pm #97681
    in forum All Other Themes

    Maria

    Member
    Member since: December 8, 2016
    I’m currently working on the paid SKT Spectacles theme and 2 of the 3 Service Boxes stopped showing up in frontpage. I deleted and re-entered the [area row] shortcode and re-checked image URLs and I cannot seem to find the problem.

    Please help.

    https://thepowellclassic.com/Superstore/

    #104673
    Nirvikalpini NithyaNirvikalpini Nithya
    Participant
    Member since: June 17, 2018

    Hi I would like to change the button on the slider or at least make it central under the writing. Here is a screen shot of the button I want to change

    https://imgur.com/07kQtD9

    and here is a screen shot of the button that I would prefer to use and have managed to add into the sections
    https://imgur.com/Ix8BkfP

    finally here is an image of the shortcode that I have used for the preferred button
    https://imgur.com/xPZ9TcS

    Is this possible ? When I attempted to add the shortcode to any section of the slider it interfered with the whole page………….

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

    Hi,

    Use this Original shortcodes

    [titlearea align=”center” title=”OUR TEAM” titlelast=”” subtitle=”” titlecolor=”#444444″ titlelastcolor=”” seperatorcolor=”#3dbad5″]
    [ourteam col=”4″ show=”4″ excerptlength=””]

    After that… kindly go to Appearance >> Theme Options >> Basic Settings >> Custom CSS Box:

    Add this code there:

    .home_section5_content { text-align:center;}
    .home_section5_content .cols4 { float:none; display:inline-block; text-align:center;}

    Regards,
    Dave

    #104474

    In reply to: Wedding Videopgrapher

    BredaBreda
    Member
    • Topics: 16
    • Replies: 32
    • Total: 48
    Member since: March 11, 2016

    I have my short code ready but when I got to Appearance -> Customize -> FRONT PAGE -> SLIDER -> Custom slider.
    There is no place for a shortcode:
    http://prntscr.com/kabdql
    Where is it supposed to be?
    thanks
    Breda

    #104449

    In reply to: Girlie Pro

    NigelNigel
    Participant
    • Topics: 189
    • Replies: 342
    • Total: 531
    Member since: March 17, 2016

    thanks, when you say ‘paste below code into the tag’ where exactly do you mean?

    header.php code below (I am not a coder)

    —————————————————————————–

    <?php
    /**
    * The Header for our theme.
    *
    * Displays all of the <head> section and everything up till <div id=”content”>
    *
    * @package SKT Girlie
    */
    error_reporting(0);
    ?><!DOCTYPE html>
    <html <?php language_attributes(); ?>>
    <head>
    <meta charset=”<?php bloginfo( ‘charset’ ); ?>”>
    <meta name=”SKYPE_TOOLBAR” content=”SKYPE_TOOLBAR_PARSER_COMPATIBLE”>
    <meta name=”viewport” content=”width=device-width”>
    <link rel=”profile” href=”http://gmpg.org/xfn/11″>
    <link rel=”pingback” href=”<?php bloginfo( ‘pingback_url’ ); ?>”>
    <!–[if lt IE 9]>
    <script type=”text/javascript” src=”<?php echo get_template_directory_uri(); ?>/js/html5.js”></script>
    <link rel=”stylesheet” href=”<?php echo get_template_directory_uri(); ?>/css/ie.css” type=”text/css” media=”all” />
    <![endif]–>
    <?php
    wp_head();
    $themename = wp_get_theme();
    $themename = preg_replace(“/\W/”, “_”, strtolower($themename) );
    if( !get_option( $themename ) ) {
    require get_template_directory() . ‘/index-default.php’;
    exit;
    }
    ?>
    </head>

    <body <?php body_class(); ?>>
    <div class=”header”>

    <div class=”header-inner”>
    <div class=”logo”>

    “>
    <?php if( of_get_option( ‘logo’, true ) != ” ) { ; ?>
    ” / >
    <?php } else { ?>
    <h2><?php bloginfo(‘name’); ?></h2>
    <span class=”tagline”><?php bloginfo( ‘description’ ); ?></span>
    <?php } ?>

    </div><!– logo –>

    <div class=”clear”></div>

    <div class=”toggle”>
    <?php echo of_get_option(‘mobilemenuname’); ?>
    </div><!– toggle –>
    <div class=”nav”>
    <?php wp_nav_menu( array(‘theme_location’ => ‘primary’) ); ?>
    <div class=”clear”></div>
    </div><!– nav –>
    <div class=”clear”></div>
    </div><!– header-inner –>
    </div><!– header –>

    <?php if ( is_home() || is_front_page() ) { ?>

    <?php $slidershortcode = of_get_option(‘slidershortcode’); ?>
    <?php if( !empty($slidershortcode)){?>
    <div class=”slider-main”>
    <?php if( of_get_option(‘slidershortcode’) != ”){ echo do_shortcode(of_get_option(‘slidershortcode’, true));}; ?>
    </div>
    <?php } else { ?>

    <div class=”slider-main”>
    <?php
    $slAr = array();
    $m = 0;
    for ($i=1; $i<11; $i++) {
    if ( of_get_option(‘slide’.$i, true) != “” ) {
    $imgSrc = of_get_option(‘slide’.$i, true);
    $imglink = of_get_option(‘slidelink’.$i, true);
    $slideurl = of_get_option(‘slideurl’.$i, true);
    if ( strlen($imgSrc) > 10 ) {
    $slAr[$m][‘image_src’] = of_get_option(‘slide’.$i, true);
    $slAr[$m][‘image_url’] = of_get_option(‘slidelink’.$i, true);
    $m++;
    }
    }
    }
    $slideno = array();
    if( $slAr > 0 ){
    $n = 0;?>
    <div id=”slider” class=”nivoSlider”>
    <?php
    foreach( $slAr as $sv ){
    $n++; ?>” alt=”<?php echo esc_attr($sv[‘image_title’]);?>” title=”<?php echo ‘#slidecaption’.$n ; ?>”/><?php
    $slideno[] = $n;
    }
    ?>
    </div>

    <?php
    foreach( $slideno as $sln ){ ?>
    <div id=”slidecaption<?php echo $sln; ?>” class=”nivo-html-caption”>
    <div class=”slide_info”>
    <?php if( of_get_option(‘slidedesc’.$sln, true) != ” ){ ?>
    <p><span> </span><?php echo do_shortcode(of_get_option(‘slidedesc’.$sln, true)); ?><span> </span></p>
    <?php } ?>
    <?php if( of_get_option(‘slidetitle’.$sln, true) != ” ){ ?>
    <h2><?php echo of_get_option(‘slidetitle’.$sln, true); ?></h2>
    <?php } ?>
    <?php if( of_get_option(‘slideurl’.$sln, true) != ” ){ ?>
    “>
    <?php echo of_get_option(‘slidebutton’.$sln, true); ?>

    <?php } ?>
    </div>
    </div><?php } ?>
    </div>
    <div class=”clear”></div><?php } ?>
    </div>

    </div><!– slider –>
    <?php } ?>
    <?php } else { ?>
    <div class=”innerbanner”>
    <?php
    if( is_single() || is_archive() || is_category() || is_author()|| is_search()) {
    echo ‘‘;
    }
    else{
    if( has_post_thumbnail() ) {
    $src = wp_get_attachment_image_src( get_post_thumbnail_id($post->ID), ‘full’ );
    $thumbnailSrc = $src[0];
    echo ‘‘;
    }
    else{
    echo ‘‘;
    }
    }
    ?>
    </div>
    <?php } ?>

    #104438

    In reply to: Wedding Videopgrapher

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

    Hi,

    Kindly go to SKT Tube Slider, create new slider and paste slider shortcode to Appearance -> Customize -> FRONT PAGE -> SLIDER -> Custom slider.

    Regards,
    Shri

    #104365
    Joe NazariJoe Nazari
    Participant
    Member since: March 17, 2015

    Shri, below the shortcode for the team on the IT Solutions template. When I change the show=”2″ to from 4, the two columns show up, but aligned left. If I change the col=”2″ to 2, then I see 2 columns and they are aligned in center, but they are two big. How do I make sure the original size stays the same and only two columns should show and aligned center, below is the code and image:

    Original:
    [titlearea align=”center” title=”OUR TEAM” titlelast=”” subtitle=”” titlecolor=”#444444″ titlelastcolor=”” seperatorcolor=”#3dbad5″]
    [ourteam col=”4″ show=”4″ excerptlength=””]

    <img src=”#” alt=”Original” />

    Changed to:
    [titlearea align=”center” title=”OUR TEAM” titlelast=”” subtitle=”” titlecolor=”#444444″ titlelastcolor=”” seperatorcolor=”#3dbad5″]
    [ourteam col=”4″ show=”2″ excerptlength=””]

    Result:

    <img src=”#” alt=”col4-show2″ />

    Changed to:
    [titlearea align=”center” title=”OUR TEAM” titlelast=”” subtitle=”” titlecolor=”#444444″ titlelastcolor=”” seperatorcolor=”#3dbad5″]
    [ourteam col=”2″ show=”2″ excerptlength=””]
    Result:

    <img src=”#” alt=”col-2-show-2″ />

    Regards,
    Joe

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

    Hi,

    This is shortcodes problem. Description area is missing in the shortcodes

    Wrong shortcodes

    [columns size="columns-3"]
    [fitboxleft title="Holistic Approach" icon="http://www.onefamilyfitness.com/wp-content/themes/strong/images/balance-body-mind.png" link="#"] Learn to be independent and self sufficient, gain new skills for life[/fitboxleft]

    Correct Shortcodes

    [columns size="columns-3"]
    [fitboxleft title="Holistic Approach" icon="http://www.onefamilyfitness.com/wp-content/themes/strong/images/balance-body-mind.png" link="#" description="Learn to be independent and self sufficient, gain new skills for life "][/fitboxleft]

    Regards,
    Chris

    #104275
    damian.szelestdamian.szelest
    Participant
    Member since: July 14, 2017

    Hi,

    I have a problem with shortcodes at home sections, for example home section 2 don’t show featured-box.

    Regards
    Damian

    LibertyLiberty
    Participant
    Member since: January 22, 2016

    I’m trying to use the Ultimate Member plugin with your Real Estate theme but the shortcodes for the plugin don’t work. I disabled all plugins and when that didn’t fix the issue I tried another theme and they worked. Do you know why this might be happening? I really want to use the Real Estate theme but I need to be able to use the member plugin as well.

    Thanks!

    #104236
    jamesrosnackjamesrosnack
    Member
    Member since: July 16, 2018

    I am having some issues with the layout on the home page of the Banquet theme. It looks fine when the demo content is installed but as soon as I change it over to my own pages, the formatting goes awry. The text block ALL go left side instead of alternating even though the shortcode is correct and I cant seem to figure out why using my own image on the section 2 creates a margin around the text block even though the image is the exact same height and width as the demo content image.

    http://naidevsite1.us/

    #104223

    In reply to: Girlie Pro

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

    Hi,

    Kindly use this shortcodes there.

    [social_area]
    [social icon="facebook" link="#"]
    [social icon="twitter" link="#"]
    [social icon="linkedin" link="#"]
    [social icon="pinterest" link="#"]
    [social icon="google-plus" link="#"]
    [social icon="youtube" link="#"]
    [social icon="wordpress" link="#"]
    [social icon="flickr" link="#"]
    [social icon="skype" link="#"]
    [/social_area]

    Kindly refer our documentation.
    http://sktthemesdemo.net/documentation/skt-girlie-doc/#footer-section

    Regards,
    Dave

    #104148
    JosephineJosephine
    Participant
    • Topics: 23
    • Replies: 58
    • Total: 81
    Member since: March 7, 2017

    I uploaded plugin Contact Form 7 and I installed the shortcode. The Contact Us page now sends the email correctly… but, now the small box that says “Send Message” is only partially showing on the “Contact Us” page… how do we correct this problem?

    I did try removing the Google Maps picture… but, that still did not correct the problem.

    Jhoecannon

Viewing 15 results - 646 through 660 (of 2,044 total)