Search Results for 'shortcode'

Home Forums Search Search Results for 'shortcode'

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

    Hi Tom,

    Well we can’t teach you coding its like kicking our stomach 🙂

    Anyways here are a few plugins you can use to do it on your own:

    https://wordpress.org/plugins/shortcode-maker/

    https://wordpress.org/plugins/custom-shortcode-creator/

    Good luck.

    Shri

    #88609
    Zane KellyZane Kelly
    Participant
    Member since: March 16, 2017

    Hello! I want to put a video (purchasing from Fotolia) in the header/slider space. Just the same video, looping. I don’t know what size I need, nor do I know how to place the file (thinking there could be a shortcode from the media?)

    Thanks!

    Kelly

    #88602
    Brian MillsBrian Mills
    Participant
    Member since: June 25, 2015

    Hi,

    I’m using SKT Black Pro and my Testimonials are not clickable on the home page, and only the summary shows on the Testimonials page with the shortcode.

    Can you help?

    Thank you,
    Brian

    #88571
    procopiaprocopia
    Participant
    • Topics: 8
    • Replies: 17
    • Total: 25
    Member since: November 17, 2017

    Hi Brad,
    the website is in maintenance mode, so you would only see the coming soon page. I can´t see why you should need the URL to answer my questions. The question is where or in which php file are the definitions of the theme shortcodes stored? And is it possible to create an additional new shortcode by copying the settings of e. g. the [menu-price] shortcode amd then modify them?
    Regards,
    Tom

    #88549
    Jennifer BublitzJennifer Bublitz
    Participant
    Member since: June 1, 2017

    Where are the shortcodes for displaying products on the front of the Fashion Trends theme? For example, I may want to only show 4 products from a certain category. Or I may want to show just the Featured Products.

    #88544
    procopiaprocopia
    Participant
    Member since: November 17, 2017

    Hi SKT Team,
    I am using the coffee pro theme and want to create an additional theme shortcode. In section ID wrappfourth the following theme shortcodes have been used: [latest-news], [event-lists] and [menu-price].
    Instead of event dates I want to display the opening hours of my customer´s business. I thought I could simply use the [menu-price] shortcode and instead of the prices I´d write down the opening hours. But there is not enough space on the right side for an entry like “8:30 – 12:00 Uhr”. So I guess I´ll have to create a new shortcode e. g. [opening-hours]. I wanted to use the basic definitions of [menu-price] and modify them. But how can I do that?
    Thanks in advance
    Tom

    #88543

    In reply to: Coffee Pro Issues

    procopiaprocopia
    Participant
    • Topics: 8
    • Replies: 17
    • Total: 25
    Member since: November 17, 2017

    Hi Chris,
    1. This is exactly what I did. I also tried to remove the default-banner image und uploaded it again. The problem remains the same. What can I do to solve it?
    2. After I translated the labels to German, the default contact form does not work anymore. It does not send an email and it does not display the error messages, if you e. g. don´t use a valid email address. I also need an “address” field instead of the “website” field. Here is my modified code:

    function contactform_func( $atts ) {
        $atts = shortcode_atts( array(
            'to_email' => get_bloginfo('admin_email'),
    		'title' => 'Contact enquiry - '.home_url( '/' ),
        ), $atts );
    
    	$cform = "<div class=\"main-form-area\" id=\"contactform_main\">";
    
    	$cerr = array();
    	if( isset($_POST['c_submit']) && $_POST['c_submit']=='Submit' ){
    		$name 			= trim( $_POST['c_name'] );
    		$email 			= trim( $_POST['c_email'] );
    		$phone 			= trim( $_POST['c_phone'] );
    		$website		= trim( $_POST['c_website'] );
    		$comments 		= trim( $_POST['c_comments'] );
    		$captcha 		= trim( $_POST['c_captcha'] );
    		$captcha_cnf	= trim( $_POST['c_captcha_confirm'] );
    
    		if( !$name )
    			$cerr['name'] = 'Bitte geben Sie Ihren Namen an.';
    		if( ! filter_var($email, FILTER_VALIDATE_EMAIL) ) 
    			$cerr['email'] = 'Bitte geben Sie eine gültige E-Mail Adresse ein.';
    		if( !$phone )
    			$cerr['phone'] = 'Bitte geben Sie Ihre Telefonnummer an.';
    		if( !$comments )
    			$cerr['comments'] = 'Bitte tragen Sie Ihre Mitteilung ein.';
    		if( !$captcha || (md5($captcha) != $captcha_cnf) )
    			$cerr['captcha'] = 'Bitte geben Sie die richtige Lösung ein.';
    
    		if( count($cerr) == 0 ){
    			$subject = $atts['title'];
    			$headers = "From: ".$name." <" . strip_tags($email) . ">\r\n";
    			$headers .= "MIME-Version: 1.0\r\n";
    			$headers .= "Content-type: text/html; charset=iso-8859-1\r\n";
    
    			$message = '<html><body>
    							<table>
    								<tr><td>Name: </td><td>'.$name.'</td></tr>
    								<tr><td>E-Mail: </td><td>'.$email.'</td></tr>
    								<tr><td>Telefon: </td><td>'.$phone.'</td></tr>
    								<tr><td>Adresse: </td><td>'.$website.'</td></tr>
    								<tr><td>Ihre Nachricht: </td><td>'.$comments.'</td></tr>
    							</table>
    						</body>
    					</html>';
    			mail( $atts['to_email'], $subject, $message, $headers);
    			$cform .= '<div class="success_msg">Vielen Dank! Wir werden uns umgehend bei Ihnen melden</div>';
    			unset( $name, $email, $phone, $website, $comments, $captcha );
    		}else{
    			$cform .= '<div class="error_msg">';
    			$cform .= implode('<br />',$cerr);
    			$cform .= '</div>';
    		}
    	}
    
    	$capNum1 	= rand(1,4);
    	$capNum2 	= rand(1,5);
    	$capSum		= $capNum1 + $capNum2;
    	$sumStr		= $capNum1." + ".$capNum2 ." = ";
    
    	$cform .= "<form name=\"contactform\" action=\"#contactform_main\" method=\"post\">
    			<p><input type=\"text\" name=\"c_name\" value=\"". ( ( empty($name) == false ) ? $name : "" ) ."\" placeholder=\"Vor- und Nachname\" /></p>
    			<p><input type=\"email\" name=\"c_email\" value=\"". ( ( empty($email) == false ) ? $email : "" ) ."\" placeholder=\"E-Mail\" /></p><div class=\"clear\"></div>
    			<p><input type=\"tel\" name=\"c_phone\" value=\"". ( ( empty($phone) == false ) ? $phone : "" ) ."\" placeholder=\"Telefon-Nr.\" /></p>
    			<p><input type=\"url\" name=\"c_website\" value=\"". ( ( empty($website) == false ) ? $website : "" ) ."\" placeholder=\"Ihre Adresse\" /></p><div class=\"clear\"></div>
    			<p><textarea name=\"c_comments\" placeholder=\"Geben Sie Ihren Text hier ein.\">". ( ( empty($comments) == false ) ? $comments : "" ) ."</textarea></p><div class=\"clear\"></div>";
    	$cform .= "<p><span class=\"capcode\">$sumStr</span><input type=\"text\" placeholder=\"Captcha-Code\" value=\"". ( ( empty($captcha) == false ) ? $captcha : "" ) ."\" name=\"c_captcha\" /><input type=\"hidden\" name=\"c_captcha_confirm\" value=\"". md5($capSum)."\"></p><div class=\"clear\"></div>";
    	$cform .= "<p class=\"sub\"><input type=\"submit\" name=\"c_submit\" value=\"Absenden\" class=\"search-submit\" /></p>
    		</form>
    	</div>";
    
        return $cform;
    }
    add_shortcode( 'contactform', 'contactform_func' );

    Any corrections to the code are welcome.

    3. solved
    4. solved

    Many thanks,
    Tom

    #88379
    info1157info1157
    Participant
    Member since: September 9, 2017

    Hi there,
    I have the Pro version of SKT Design Agency Theme, and for the life of me I can not figure out how to remove the comments from the CSS. I have turned it off in wordpress, but can’t seem to be able to remove it from showing on the blog posts and page showing all posts (using shortcode).

    http://kallicollective.com/resources/

    wendiwestwendiwest
    Participant
    Member since: October 10, 2017

    Hello – I found the Font Awesome Icon list and am trying to Add snapchat to my header with facebook, twitter and pinterest.

    snapchat will not show image in icon box and the box is higher than all others.

    I cannot provide a link as the site is still ‘under construction’

    Let me know if I can give you a temporary login to view the header or if there is some other file I must include the snapchat icon code in to work with the shortcode – <i class=”fa fa-snapchat” aria-hidden=”true”></i>

    #88329

    In reply to: Flip box

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

    Hi,

    Kindly go to All Pages >> flip box >> find flip box shortcodes and change it there.

    For example:

    [flipbox fliptype="h" frontimage="IMAGE HERE" fronttitle="FRONT TITLE HERE" frontdescription="FRONT DESCRIPTION HERE" backtitle="BACK TITLE HERE" backdescription="BACK DESCRIPTION HERE" backurl="#" backbutton="Read More"]

    Regards,
    Chris

    #88328

    In reply to: Flip box

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

    Hi,

    Kindly go to All Pages >> flip box >> find flip box shortcodes and change it there.

    For example:

    [flipbox fliptype="h" frontimage="IMAGE HERE" fronttitle="FRONT TITLE HERE" frontdescription="FRONT DESCRIPTION HERE" backtitle="BACK TITLE HERE" backdescription="BACK DESCRIPTION HERE" backurl="#" backbutton="Read More"]

    Regards,
    Chris

    #88268

    In reply to: BeFit Pro

    EddieEddie
    Participant
    • Topics: 5
    • Replies: 77
    • Total: 82
    Member since: January 1, 2017

    that work good for the featured images of the posts. thank you

    now how we get this one

    1 – need add shortcode for currerany under price
    please check link – https://bodyfeed.com/product/team-bodyfeed-2015-triathlon-suit/
    Here is shortcode – <?php echo do_shortcode(‘[woocs]’); ?>
    Documentation – https://currency-switcher.com/documentation/

    #88244
    Maggie FrancicMaggie Francic
    Member
    • Topics: 12
    • Replies: 36
    • Total: 48
    Member since: March 26, 2017

    I would like the css editor codes to take the shortcodes visibility off my sites please as in the screenshot earlier in this thread. It is an issue I have on every install of skt girlie.

    #88177

    In reply to: BeFit Pro

    EddieEddie
    Participant
    • Topics: 5
    • Replies: 77
    • Total: 82
    Member since: January 1, 2017

    when we going to take care of this 2 issues. I need fixed ASAP, I requested few times and also by support email nothing happened

    Please look this 2 issues ASAP

    1 – need add shortcode for currerany under price
    please check link – https://bodyfeed.com/product/team-bodyfeed-2015-triathlon-suit/
    Here is shortcode – <?php echo do_shortcode(‘[woocs]’); ?>
    Documentation – https://currency-switcher.com/documentation/

    2 – Please check layout of post articles, we need writing to show under featured image , not on side
    please check link – https://bodyfeed.com/from-runner-to-triathlete-the-transition-to-swim-bike-run/

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

    Hmm. It surely might be conflicting with some other plugin you have used. In case you aren’t developing for client instead of page builder use this plugin: https://wordpress.org/plugins/shortcodes-ultimate/

    Regards,
    Shri

Viewing 15 results - 811 through 825 (of 2,038 total)