Search Results for 'shortcode'

Home Forums Search Search Results for 'shortcode'

Viewing 15 results - 1,591 through 1,605 (of 2,044 total)
  • Author
    Search Results
  • #33423

    In reply to: SKT Clean Pro

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

    Hi Lawrence,

    Here is the code:

    [column_content type="one_half"]<img src="http://localhost/www/sktthemes/sktclean/wp-content/themes/skt-clean-pro/images/thumb01.png"/>
    	
    [/column_content]
    
    [column_content type="one_half_last"]
    	<h5>Amazing & Powerfull Design & Code with tons of Features</h5>[theme-feature icon="mobile" title="Fully responsive" description="do your content will always look good on any screen size like Tablet, Mobiles & all sort of devices."][theme-feature icon="refresh" title="Awesome Slider" description="give you the opportunity to showcase your content with layers and different styles well."][theme-feature icon="gears" title="Advance Theme customization" description="panel to make it easy to cutomize your website and many more featured to build it more expand."][theme-feature icon="code" title="Amazing Shortcodes" description="fully loaded with meta optine for easy customization with the single click not a rocket science in it."][/column_content]

    Regards,
    Brad

    #33392
    GeirGeir
    Member
    Member since: March 9, 2016

    Hello!

    I have created my own booking-function with PHP that I want to integrate into my SKT Stay Here Theme. But I’m not sure how to do that.

    Is there a shortcode to include my function in a page?
    Where to I put the PHP-files for the function?

    ArneArne
    Member
    Member since: April 4, 2016

    Hello,

    I’m very happy with the Full Width theme and nearly finished with my the new website, but I have some visual elements that I would like to further adjust and can’t do it without your help.

    1) The width of the text field in the content field

    Currently the content background field / color has in the max version about 710 pixels. The “real” content, f.e. a textfield or an image in front of the background color, has about 670 pixels. That means the textfield is about 94% of the content background, with 3 % padding (or 20 pixels) on each side.

    I would like to have the padding much wider, f.e. that the real content only takes about 84% of the content background (that would be only 600 pixels textfield in front of 710 pixel background colour), so that there are 8% padding on each side of the textfield (about 55 pixel).

    From a visual point of view that would be the most important point for me.

    2) Background slider on all sides
    Currently the image background slider is only on the first page. Is is possible to change it that way that the background slider works on all pages (best would be without being influenced by changes of the content in front of the background slider)?

    Would that be possible with using / changing some code or would you recommend to use another plugin for that? And if so is there any that you would recommend for this?

    3) Position submenu / active color
    Currently any submenu begins a little bit deeper than the corresponding main menu button. Is it possible that they begin on the same height / y-coordinate?

    I think there is a little bug with the active version of the submenu. If I click on one the submenu buttons, leave the menu and go back to the submenu, suddenly all of the submenu buttons are activated, not only the chosen one.

    4) Position of titles
    Currently the titles of the pages are left aligned. Is it possible to center them with a shortcode? I only would like to try that, not sure what looks better …

    5) Social Media Icons
    Can I use a shortcode for the social media icons to implement them directly in a textfield in a row? And is it possible to add further icons like Deviantart, Instagramm, Artstation, Behance…?

    Thanks for any help regarding my questions,

    best regards,
    Arne

    #33175

    In reply to: Show more blogpost

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

    Hi Astrid,

    Kindly add show=”8″ in the shortcode.

    Regards,
    Harris

    #33073
    RicardoRicardo
    Member
    • Topics: 2
    • Replies: 1
    • Total: 3
    Member since: May 4, 2016

    Thank you Shri. Actually, the issue isn’t the footer columns and its content – that we easily customise with widgets – but the copyright area. The copyright area doesn’t allow gallery or shortcodes insertion as far as we’ve tested.

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

    Hi RF,

    Footer is widget friendly so if you want to remove certain part of the footer and replace it with something else you can go to appearance>widgets and add the shortcode of the gallery etc to display that instead of the default image.

    Regards,
    Shri

    #33019

    In reply to: team section

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

    Team members might be appearing using shortcode. Check it and edit the number 4 to 10,

    Regards,
    Shri

    #32959
    Raimondo ZorodduRaimondo Zoroddu
    Participant
    Member since: April 12, 2016

    Goodmorning,
    my site address is http://www.capoestsardegna.it/preprod/ , would liked to filter the Showcase section by category, I mean to use it also on blog posts or pages but only with a specified category. I know that only few themes of yours are able to do it, but my theme name is a Skt Complete PRO and I just wonder on wich shortcode use to make it run 🙂

    Again on the Showcase section, how shall I change the “All” filter to other languages?

    Thank you for support
    Regards
    Raimondo

    #32950
    Brian DimitroffBrian Dimitroff
    Member
    • Topics: 3
    • Replies: 3
    • Total: 6
    Member since: April 10, 2015

    Hmm… I successfully made the change but it didn’t fix it. Any other ideas? When I take a look at the page source in a browser, it looks like the problem is that the <div class=”news-box”> container isn’t getting closed with a </div> after each post. Instead, each new post is getting inserted into the <div class=news-box> element of the post before it, and all the closing tags are just being stacked at the end of the section.

    Here’s the latestposts code from my custom-functions.php file:

    function latestpostsoutput_func( $atts ){
       extract( shortcode_atts( array(
    		'show' => '',
    	), $atts ) );
    	$postoutput = '';
    	wp_reset_query();
    	$n = 0;
    	query_posts(  array( 'posts_per_page'=>$show, 'post__not_in' => get_option('sticky_posts') )  );
    	if ( have_posts() ) :
    		while ( have_posts() ) : the_post();
    			$n++;
    			if( $n%2==0 )  $nomgn = 'last';	else $nomgn = ' ';
    			if ( has_post_thumbnail()) {
    				$large_imgSrc = wp_get_attachment_image_src( get_post_thumbnail_id(), 'large');
    				$imgUrl = $large_imgSrc[0];
    			}else{
    				$imgUrl = get_template_directory_uri().'/images/img_404.png';
    			}
    			$postoutput .= '<div class="news-box '.$nomgn.'">
    								<div class="news-thumb">
    									<a href="'.get_the_permalink().'"><img src="'.$imgUrl.'" alt=" " /></a>
    								</div>
    								<div class="news">
    									<div class="date-news">
    										<span class="newsdate">'.get_the_time('d').'</span>
    										<span>'.get_the_time('M').'</span>
    									</div>
    									<a href="'.get_permalink().'"><h4>'.get_the_title().'</h4></a>
    									 '.wp_trim_words( get_the_content(), 20, '' ).' 
    								</div>
                            </div>';	
    						$postoutput .= ''.(($n%2==0) ? '<div class="clear"></div>' : '');	
    		endwhile;
    	endif;
    	wp_reset_query();
    	return $postoutput;
    }
    add_shortcode( 'latestposts', 'latestpostsoutput_func' );
    
    Sonal S SinhaSonal S Sinha
    Moderator
    • Topics: 0
    • Replies: 31421
    • Total: 31421
    Member since: August 16, 2013

    Hi Brad,

    Kindly use category slug name in the shortcode.

    e.g. [portfolio cat=”pine-chalet”]

    Regards,
    Dave

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

    Hi Dax,

    Kindly go to Settings>>Reading>>Select Your Latest Posts

    Then go to Appearance>>Theme Option>>Section and paste the testimonial shortcode in the section where you want to show the testimonials. Within the section you will find the background image option, Upload the background image from there to show the testimonials with background image.

    Regards,
    Dave

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

    Hi,

    The theme has been updated however due to the framework also getting updated the theme options will have to be re-input.

    Secondly the support was for one year and to extend another year you will have to pay $9 which is again optional if you don’t need support.

    Kindly use shortcodes ultimate plugin which also does the same tasks and their shortcodes should work fine.

    Regards,
    Shri

    #32689
    Brian DimitroffBrian Dimitroff
    Member
    Member since: April 10, 2015

    There seems to be an issue with the Latest News section where the width of each post is showing up as a percentage of the width of the post above it rather than a percentage of the width of the parent container. The posts are also not appearing side by side like they do on the demo page, but instead they’re all stacked on the left. You can see what I’m talking about at http://test.justiceforhumanity.com

    I tried looking at the shortcode in custom-functions.php, but I’m not experienced enough to troubleshoot the issue. Could you please help identify what needs to be fixed? Thank you.

    #32536

    In reply to: Auto Car Pro

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

    I wasn’t trying to use Page Builder on the homepage. For whatever reason just having it activated caused the conflict. I will try out shortcodes ultimate.

    #32501

    In reply to: Auto Car Pro

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

    Hi Liberty,

    You can use page builder on all inner pages instead of the homepage which uses sections.

    Lastly you can try shortcodes ultimate plugin instead of page builder which is one and the same and better in terms of usability.

    Regards,
    Shri

Viewing 15 results - 1,591 through 1,605 (of 2,044 total)