Search Results for 'shortcode'

Home Forums Search Search Results for 'shortcode'

Viewing 15 results - 661 through 675 (of 2,038 total)
  • Author
    Search Results
  • #103604
    Sonal S SinhaSonal S Sinha
    Keymaster
    • Topics: 10
    • Replies: 6995
    • Total: 7005
    Member since: June 12, 2013

    Hi,

    Yes you can use the shortcodes of the homepage sections on any of the other pages as well.

    Regards,
    Shri

    #103585

    In reply to: Team section

    ginahickmanginahickman
    Member
    • Topics: 2
    • Replies: 1
    • Total: 3
    Member since: June 18, 2018

    This still does not work. The order of team members is changed on the WordPress dashboard, but not on the Home Page Section or Page when using [ourteam] as the shortcode.

    #103542
    osasoribhabor85osasoribhabor85
    Member
    Member since: May 4, 2018

    hello..

    please i think i need an additional css for the skt resume theme.. when ever i set links (example: https://mydomain.com/#about) on the main menu, the main menu becomes permanently highlighted. i attached a screenshot of the problem for clarity purposes…
    main menu become permanently highlighted when i set the menu links (example: https://mydomain.com/#about)
    main menue ok when menu links are set to (example #about)

    Also i would love to have a blog page (page that shows lets say 10 latest post), currently the skt resume theme dosent have a page that shows latest post except the home that only show 2 posts.. please i also need a solutionfor this problem, maybe a shortcode that i can use to embed blog into a page or any other solution….
    Best Regards…

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

    Hi,

    This is font Awesome Icons.

    If you want to change. kindly use icon name in shortcodes. whatever you want.

    Regards,
    Dave

    #102989

    In reply to: Donation THeme Footer

    LauraLaura
    Participant
    • Topics: 158
    • Replies: 195
    • Total: 353
    Member since: July 21, 2016

    Hello, we have fixed the issue. All sections responded to the same code in front-data.php except for the section 3) If I added the id=”section3″ in the same line as the rest of the sections, it wouldn’t work at all. So I added it in the div. It works, but the sections jumps too high.
    Here are the code and screenshot:
    This is the working code for section 2 you can see where I added id=”section2″
    —- `<!– Home Section 2 –>
    <?php if($complete[‘hide_boxes_section2’] ==”){?>
    <section class=”home2_section_area <?php if($complete[‘section2_bg_image’]){ ?>home2_section_area_bg<?php } ?>” <?php if(!empty($complete[‘section2_bg_video’])){ ?>data-vidbg-bg=”mp4: <?php $sec2bgvideo = $complete[‘section2_bg_video’]; echo do_shortcode($sec2bgvideo); ?>” data-vidbg-options=”loop: true, muted: true, overlay: false”<?php } ?> id=”section2″>
    <div class=”center”>
    <div class=”home_section2_content”>
    <?php …`
    —–

    Here is the code for section 3. every time i added in the same spot it wouldn’t work in front end. You can see where I added the id because it doesn’t work if I add it to the same place.

    <!-- Home Section 3 -->
         <?php if($complete['hide_boxes_section3'] ==''){?>
        <section id="demos" class="home3_section_area <?php if($complete['section3_bg_image']){ ?>home3_section_area_bg<?php } ?>" <?php if(!empty($complete['section3_bg_video'])){ ?>data-vidbg-bg="mp4: <?php $sec3bgvideo = $complete['section3_bg_video']; echo do_shortcode($sec3bgvideo); ?>" data-vidbg-options="loop: true, muted: true, overlay: false"<?php } ?>>
        	<div class="center"  id="section3">
                <div class="home_section3_content">
                        <?php

    Here is a link to the screenshot of the issue:
    https://imgur.com/a/WkEyZPD

    Here is what it is supposed to look like
    https://imgur.com/a/vachYjA

    Thank you

    #102618
    GregGreg
    Participant
    • Topics: 6
    • Replies: 7
    • Total: 13
    Member since: October 14, 2016

    I’m using the Wedding Videographer theme and don’t see how to add the video with the audio. I was able to add it as a background video, but that doesn’t play the audio. Is there shortcodes I’m missing somewhere?

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

    We will have to do this for the SKT Biz or Corp theme. For the new ones shortcode is given.

    If your developer can do it within header file well and good otherwise send us WordPress admin details and URL of the site via email: [email protected]

    Regards,
    Shri

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

    Custom requirement of modifying existing shortcode. Connect with us via email: [email protected]

    Mention this forum URL there.

    Regards,
    Shri

    #102366
    wilfriedwilfried
    Participant
    • Topics: 43
    • Replies: 105
    • Total: 148
    Member since: December 7, 2017

    I found it myself. In case someone else need this. There are 2 options, first is fast, second is preferable:

    1. you an edit the code in wp-content/themes/skt-gardening/sktframe/core-functions.php like this:
    function clientbox($atts){
    extract( shortcode_atts(array(
    ‘url’ => ‘url’,
    ‘image’ => ‘image’,
    ‘alt’ => ‘alt’
    ), $atts));

    return ‘
    <div class=”clientbox”>
    '.$alt.'`

    2. You can make a plugin for it (looks safer) where you can add other things as well. Create a folder eg: ‘my-thing’, put there a file in and name it ‘my-thing.php’, then put the following in that file:

    <?php
    /*
      Plugin Name: My Thing
      Description: some description
      Author: your name
      Version: 1.0
      Author URI: http://your site
    */
    
    // Shortcode MyClient
    /*[myclient url="#" image="image" alt="alt"]*/
    function myclientbox($atts){
    		extract( shortcode_atts(array(
    			'url' => 'url',
    			'image' => 'image',
    			'alt' => 'alt'
    		), $atts));
    		
    		return '
                    <div class="clientbox">
                        <a href="'.$url.'" target="_blank"><img src="'.$image.'" alt="'.$alt.'" title="'.$alt.'" /></a>
                    </div>
    		';
    }
    add_shortcode('myclient','myclientbox');

    Then use the shortcode [myclient] instead of [client].

    Of course if someone knows other / better options the please share 😉

    #102362
    wilfriedwilfried
    Participant
    Member since: December 7, 2017

    Hi,

    site: http://actisan.be/ wp /
    theme: Gardener

    I like very much your shortcode for [client] like this: [client url=”#” image=”image url”]

    But is it also possible to specify the alt=”alt” and title=”title” for the image?
    Is this something I can try to add myself? But where should I search?

    #102329

    In reply to: SKT LANDING PAGE THEME

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

    Hi,

    Kindly use page template full wide in pages>edit>right sidebar under page attributes>select full width template to have no sidebar. Or else go to appearance>widgets and then add HTML widget and paste shortcode in there to replace the default widget and instead show what you add there.

    Regards,
    Shri

    #102294

    In reply to: Homepage images

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

    Replace our section area and hide it and then use a shortcode of plugin like nextgen gallery or something similar which opens up several images in lightbox when clicked on a single image.

    Regards,
    Shri

    #102264
    bjkuikelbjkuikel
    Member
    Member since: December 14, 2017

    Hello Even I have used the exact shortcode the homepage section is not showing.

    #102263
    tarekkaram0tarekkaram0
    Member
    • Topics: 4
    • Replies: 11
    • Total: 15
    Member since: July 12, 2017

    Nevermind, I used a social icon plug in with shortcodes and replaced the native code with it. I don’t know why the theme default icons are not working, but at least this issue is resolved for me.

    #102164
    Marlou .Marlou .
    Participant
    • Topics: 26
    • Replies: 91
    • Total: 117
    Member since: December 10, 2015

    Hi,

    Thanks for the help. I found a plugin, but it requires shortcode knowledge… Which unfortunately I don’t have.
    Any other suggestions, you’ve helped greatly in the past? My website is: https://saudadesdeportugal.nl/

Viewing 15 results - 661 through 675 (of 2,038 total)