Search Results for 'shortcode'

Home Forums Search Search Results for 'shortcode'

Viewing 15 results - 706 through 720 (of 2,038 total)
  • Author
    Search Results
  • MOHAMADMOHAMAD
    Participant
    Member since: March 16, 2017

    I whould like to insert widget facebook like box, hitats or shortcode in section. Where can I do that?

    #99464

    In reply to: SKT Interior Design

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

    Hi,

    Kindly go to Appearance » Widgets » Sidebar Main, drag drop a text widget and paste below shortcode there:

    [contactform to_email="[email protected]" title="Contact Form"]

    Replace [email protected] with your email address.

    Regards,
    Dave

    #98981
    PhilipPhilip
    Participant
    Member since: March 29, 2017

    Hello,

    the standard-testimonials-slider is a bit useless. How to add buttons on the left and the right to switch to next testimonial more easily?

    Second, in testimonials, every space, bullet, shortcode or paragraph is not shown on the page.
    https://imgur.com/a/A8vDN

    please take a look. thank you.

    #98964
    mcasciomcascio
    Participant
    • Topics: 4
    • Replies: 7
    • Total: 11
    Member since: August 23, 2017

    Hello thank you. I found the reference to the contact form in that file, but I am unsure where to place the actual recipient emails?

    I attempted to replace ‘admin_email’ on the third line here with my email address and then tested the form, but I received nothing. I am also unsure why it wouldn’t send to the admin email (mine) in the first place.

    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’] = ‘Please enter your name.’;
    if( ! filter_var($email, FILTER_VALIDATE_EMAIL) )
    $cerr[’email’] = ‘Please enter a valid email.’;
    if( !$phone )
    $cerr[‘phone’] = ‘Please enter your phone number.’;
    if( !$comments )
    $cerr[‘comments’] = ‘Please enter your message.’;
    if( !$captcha || (md5($captcha) != $captcha_cnf) )
    $cerr[‘captcha’] = ‘Please enter the correct answer.’;

    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>Email: </td><td>’.$email.'</td></tr>
    <tr><td>Phone: </td><td>’.$phone.'</td></tr>
    <tr><td>Website: </td><td>’.$website.'</td></tr>
    <tr><td>Message: </td><td>’.$comments.'</td></tr>
    </table>
    </body>
    </html>’;
    mail( $atts[‘to_email’], $subject, $message, $headers);
    $cform .= ‘<div class=”success_msg”>Thank you! A representative will get back to you very shortly.</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=\”Name\” /></p>
    <p><input type=\”email\” name=\”c_email\” value=\””. ( ( empty($email) == false ) ? $email : “” ) .”\” placeholder=\”Email\” /></p><div class=\”clear\”></div>
    <p><input type=\”tel\” name=\”c_phone\” value=\””. ( ( empty($phone) == false ) ? $phone : “” ) .”\” placeholder=\”Phone\” /></p>
    <p><input type=\”url\” name=\”c_website\” value=\””. ( ( empty($website) == false ) ? $website : “” ) .”\” placeholder=\”Website with prefix http://\” /></p><div class=\”clear\”></div>
    <p><textarea name=\”c_comments\” placeholder=\”Message\”>”. ( ( empty($comments) == false ) ? $comments : “” ) .”</textarea></p><div class=\”clear\”></div>”;
    $cform .= “<p><span class=\”capcode\”>$sumStr</span><input type=\”text\” placeholder=\”Captcha\” 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=\”Submit\” class=\”search-submit\” /></p>
    </form>
    </div>”;

    return $cform;
    }
    add_shortcode( ‘contactform’, ‘contactform_func’ );

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

    Hi,

    Issue have been resolved.

    If do you want to add the header slider on other inner pages. Kindly use MetaSlider plugin shortcode.

    Example:
    http://www.indyque.com/destinations/switzerland/

    Regards,
    Dave

    #98898
    info1295info1295
    Member
    Member since: March 7, 2018

    Dear SKT,

    I am currently working with the Adventure pro theme and want to add the inner page header slider. I just don’t know which shortcode I need to use to make this work. It is for the Full Width page layout.

    Can you help me.

    URL: http://www.indyque.com/destinations/switzerland/

    Would love to hear from you guys.

    Thanks in advance,
    Sanne

    #98887

    In reply to: Web Hosting Theme

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

    Hello

    The shortcodes are workingfor the testimonials, it put some other coding in the text tab when i pasted into the Visual

    Thank you so much. And are there still short codes for my first question please

    Thank you

    #98885

    In reply to: Web Hosting Theme

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

    Hello

    My testimonials and buttons shortcodes, that are given on the demo website, don’t work either

    #98860
    Fay DixonFay Dixon
    Participant
    Member since: September 8, 2016

    Hello

    I recently installed the Web Hosting theme, and some of the features in the demo home page i cant find their shortcodes. One i would be referring to is in on the demo website http://sktperfectdemo.com/demos/hosting/ right under the “Solutions” heading there are square boxes and when you hover over them they animate a bit. How can i get that shortcode? Because you get the promotion boxes that look the same but it doesnt have the same effect. http://sktperfectdemo.com/demos/hosting/promotion-boxes/

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

    Hi,

    Kindly go to Appearance » Theme Options » Header Menu Search form and paste below shortcode there:

    [searchform]

    Regards,
    Dave

    #98771
    turkbike06turkbike06
    Participant
    • Topics: 1
    • Replies: 2
    • Total: 3
    Member since: July 14, 2017

    I watched this video to properly setup gallery: https://www.youtube.com/watch?v=akgcWw8DD9o
    it says that “click on shortcodes now. And copy the shortcodes of portfolio gallery there”. But the shortcodes of gallery are different. The only gallery shortcode is “[photogallery filter=”false”]” in my wordpress admin panel. I pasted this shortcode in my gallery page as [photogallery filter=”true”]. But it does not still run properly.

    #98744
    jakobbayjakobbay
    Participant
    • Topics: 2
    • Replies: 2
    • Total: 4
    Member since: April 6, 2018

    In the console I get this error:

    JQMIGRATE: Migrate is installed, version 1.4.1
    mediaelement-and-player.min.js?ver=4.2.6-78496d1:12 Uncaught TypeError: Language code must have format 2-3 letters and. optionally, hyphen, underscore followed by 2 more letters
    at Object.s.language (mediaelement-and-player.min.js?ver=4.2.6-78496d1:12)
    at Object.5.15 (mediaelement-and-player.min.js?ver=4.2.6-78496d1:12)
    at i (mediaelement-and-player.min.js?ver=4.2.6-78496d1:12)
    at e (mediaelement-and-player.min.js?ver=4.2.6-78496d1:12)
    at mediaelement-and-player.min.js?ver=4.2.6-78496d1:12
    mediaelement-migrate.min.js?ver=4.9.5:1 Uncaught ReferenceError: MediaElementPlayer is not defined
    at mediaelement-migrate.min.js?ver=4.9.5:1
    at mediaelement-migrate.min.js?ver=4.9.5:1
    wp-mediaelement.min.js?ver=4.9.5:1 Uncaught TypeError: b(…).not(…).filter(…).mediaelementplayer is not a function
    at HTMLDocument.a (wp-mediaelement.min.js?ver=4.9.5:1)
    at i (load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,underscore,wp-a11y,wp-util,jquery-ui-core,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable,jquery-&load[]=ui-draggable,jquery-ui-droppable,backbone,wp-backbone,shortcode,utils,media-models,moxiejs,plupload,wp-plupload&ver=4.9.5:2)
    at Object.fireWith [as resolveWith] (load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,underscore,wp-a11y,wp-util,jquery-ui-core,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable,jquery-&load[]=ui-draggable,jquery-ui-droppable,backbone,wp-backbone,shortcode,utils,media-models,moxiejs,plupload,wp-plupload&ver=4.9.5:2)
    at Function.ready (load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,underscore,wp-a11y,wp-util,jquery-ui-core,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable,jquery-&load[]=ui-draggable,jquery-ui-droppable,backbone,wp-backbone,shortcode,utils,media-models,moxiejs,plupload,wp-plupload&ver=4.9.5:2)
    at HTMLDocument.K (load-scripts.php?c=0&load[]=jquery-core,jquery-migrate,underscore,wp-a11y,wp-util,jquery-ui-core,jquery-ui-widget,jquery-ui-mouse,jquery-ui-sortable,jquery-&load[]=ui-draggable,jquery-ui-droppable,backbone,wp-backbone,shortcode,utils,media-models,moxiejs,plupload,wp-plupload&ver=4.9.5:2)

    #98529

    In reply to: Perfect Theme Basics

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

    Hi,

    1. Unfortunately for now demo import file is not available for Perfect themes.

    2. You have to edit shortcode manually.

    3. What do you mean by this?

    4. Kindly go to Pages, find Section 1 page and rename it.

    Regards,
    Brad

    #98203
    rehabsouthflrehabsouthfl
    Member
    • Topics: 2
    • Replies: 14
    • Total: 16
    Member since: February 21, 2018

    Hi again,
    How can I fix footer recent blog posts area?
    I am not sure how it looks bad (title with h2 tag), unlike a demo site.
    can you please help me fix it?
    as per the documentation, I found this shortcode? where should I put this?
    [footerposts show=”2″ cat=” your cat ID ” excerptlength=”10″ readmore=”Read More”]
    I tried appearance->theme options->footer section area but it does not have a place to use this code, not even widget section as well.

    #98165
    rjordan.rgrjordan.rg
    Member
    Member since: March 26, 2018

    Hi,
    is there a chance to change the appereance order of the team member pics?
    I need to have the CEO show at first position (ie zahera as in the example referred at http://sktthemesdemo.net/gravida/shortcode-our-team/# should be at first , then Sara and the others, according to the OBS of the company.

    Another question is on the size of the picture box, is it possible to resize it and have it smaller when the number of items showed is three per row?

    Kind regards,
    Rosario

Viewing 15 results - 706 through 720 (of 2,038 total)