Forum Replies Created

Viewing 30 posts - 51,451 through 51,480 (of 68,227 total)
  • Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 26, 2018 at 08:17

    Hello,

    You’re welcome!

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 23, 2018 at 16:19

    You’re welcome!

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 23, 2018 at 16:05

    Please clear cache and check now.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 23, 2018 at 15:32

    Please try to add this code in Theme Options > Custom css > Custom css for mobile:

    .home .wpb_revslider_element {
        margin-top: -15px;
    }

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 23, 2018 at 14:29

    Hello,

    Yes, please use Loco Translate plugin to translate required strings.
    If this doesn’t help, provide us with temporary wp-admin and FTP access.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 23, 2018 at 14:27

    Hello,

    Please provide temporary wp-admin access so we can take a closer look. Thanks in advance.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 23, 2018 at 14:21

    You’re welcome!
    I do not see the gap. Please provide the screenshot. Thanks in advance.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 23, 2018 at 13:10

    Hello,

    Fixed (content-product.php, content-product-slider.php, special-offer.php). Please clear cache and check now.
    The fix will be added in the next theme update.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 23, 2018 at 12:52

    Hello,

    Theme Options > Single product page > Enable slider for gallery images > On.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 23, 2018 at 12:40

    You’re welcome!

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 23, 2018 at 12:11

    Hello,

    1) Please change the previous code to:

    .carousel-area .owl-nav {
        opacity: 1;
    }
    @media only screen and (max-width: 768px) {
        .carousel-area .owl-nav {
            display: block !important;
        }
    }

    2) This code needs to be added in functions.php of the child theme:

    function et_contact_form($atts) {
        extract( shortcode_atts( array(
          'class' => ''
        ), $atts ) );
    
        $captcha_instance = new ReallySimpleCaptcha();
        $captcha_instance->bg = array( 244, 80, 80 );
        $word = $captcha_instance->generate_random_word();
        $prefix = mt_rand();
        $img_name = $captcha_instance->generate_image( $prefix, $word );
        $captcha_img = ETHEME_CODE_URL.'/inc/really-simple-captcha/tmp/'.$img_name;
    
        ob_start();
        ?>
            <div id="contactsMsgs"></div>
            <form action="<?php the_permalink(); ?>" method="get" id="contact-form" class="contact-form <?php echo $class; ?>">
    
                <div class="form-group">
                  <p class="form-name">
                    <label for="name" class="control-label"><?php esc_html_e('Name and Surname', 'woopress') ?> <span class="required">*</span></label>
                    <input type="text" name="contact-name" class="required-field form-control" id="contact-name">
                  </p>
                </div>
    
                <div class="form-group">
                    <p class="form-name">
                      <label for="contact-email" class="control-label"><?php esc_html_e('Email', 'woopress') ?> <span class="required">*</span></label>
                      <input type="text" name="contact-email" class="required-field form-control" id="contact-email">
                    </p>
                </div>
    
                <div class="form-group">
                  <p class="form-name">
                    <label for="contact-website" class="control-label"><?php esc_html_e('Website', 'woopress') ?></label>
                    <input type="text" name="contact-website" class="form-control" id="contact-website">
                  </p>
                </div>
    
                <div class="form-group">
                  <p class="form-textarea">
                    <label for="contact_msg" class="control-label"><?php esc_html_e('Message', 'woopress'); ?> <span class="required">*</span></label>
                    <textarea name="contact-msg" id="contact-msg" class="required-field form-control" cols="30" rows="7"></textarea>
                  </p>
                </div>
    
                <?php if ( etheme_get_option( 'privacy_contact' ) ): ?>
    		        <p class="form-row privacy-policy">
    		            <?php echo etheme_get_option( 'privacy_contact' ); ?>
    		        </p>
    		    <?php endif ?>
    
                <p class="pull-right">
                  <input type="hidden" name="contact-submit" id="contact-submit" value="true" >
                  <span class="spinner"><?php esc_html_e('Sending...', 'woopress') ?></span>
                  <button class="btn btn-black big" id="submit" type="submit"><?php esc_html_e('Send message', 'woopress') ?></button>
                </p>
    
                <div class="clearfix"></div>
            </form>
        <?php
        $output = ob_get_contents();
        ob_end_clean();
    
        return $output;
      }
    
       function et_send_msg_action() {
    
            $captcha_instance = new ReallySimpleCaptcha();
    
            if(isset($_GET['contact-submit'])) {
                header("Content-type: application/json");
                $name = '';
                $email = '';
                $website = '';
                $message = '';
                $reciever_email = '';
                $return = array();
    
                if( trim( $_GET['contact-name'] ) === '') $return['msg'][] = esc_html__( 'fill in the "Name and Surname" field.', 'woopress' );
    
                if( trim( $_GET['contact-email'] ) === '' || !isValidEmail( $_GET['contact-email'] ) ) $return['msg'][] = esc_html__( 'Please enter a valid email.', 'woopress' );
    
                if( trim( $_GET['contact-msg'] ) === '') $return['msg'][] = esc_html__( 'fill in the "Message" field.', 'woopress' );
    
                // Check if we have errors
    
                if( ! isset( $return['msg'] ) ) {
                    $name = trim($_GET['contact-name']);
                    $email = trim($_GET['contact-email']);
                    $message = trim($_GET['contact-msg']);
                    $website = stripslashes(trim($_GET['contact-website']));
    
                    // Get the received email
                    $reciever_email = etheme_get_option('contacts_email');
    
                    $subject = 'You have been contacted by ' . $name;
    
                    $body = "You have been contacted by $name. Their message is: " . PHP_EOL . PHP_EOL;
                    $body .= $message . PHP_EOL . PHP_EOL;
                    $body .= "You can contact $name via email at $email";
                    if ($website != '') {
                        $body .= " and visit their website at $website" . PHP_EOL . PHP_EOL;
                    }
                    $body .= PHP_EOL . PHP_EOL;
    
                    $headers = "From $email ". PHP_EOL;
                    $headers .= "Reply-To: $email". PHP_EOL;
                    $headers .= "MIME-Version: 1.0". PHP_EOL;
                    $headers .= "Content-type: text/plain; charset=utf-8". PHP_EOL;
                    $headers .= "Content-Transfer-Encoding: quoted-printable". PHP_EOL;
    
                    if(wp_mail($reciever_email, $subject, $body, $headers)) {
                        $return['status'] = 'success';
                        $return['msg'] = esc_html__('All is well, your email has been sent.', 'woopress');
                    } else{
                        $return['status'] = 'error';
                        $return['msg'] = esc_html__('Error while sending a message!', 'woopress');
                    }
                    $captcha_instance->remove( $_GET['captcha-prefix'] );
    
                }else{
                    // Return errors
                    $return['status'] = 'error';
                    //$return['msg'] = __('Please, fill in the required fields!', ETHEME_DOMAIN);
                }
    
                echo json_encode($return);
                die();
            }
        }

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 23, 2018 at 11:28

    Please change the previous code to:

    .menu-wrapper .menu>li.current-menu-item>a,
    .fixed-header .menu-wrapper .menu>li.current-menu-item>a {
        color: white !important;
    }

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 23, 2018 at 10:59

    Hello,

    1) Please compare these codes http://prntscr.com/llyl4e and http://prntscr.com/llylae
    2) The code needs to be added in Custom css for your Home page, not in Global custom css. Go to Edit the page > http://prntscr.com/llym48
    Let me know the result.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 23, 2018 at 10:40

    Hello,

    Please try to add this code in Custom css for page:

    .menu-wrapper .menu>li.current-menu-item>a {
        color: white !important;
    }

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 23, 2018 at 08:54

    Hello,

    Thanks for contacting us.
    Try to use an additional plugin, for example, Image Title Remove.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 23, 2018 at 08:50

    Hello,

    Please check FTP access. We can’t connect, unfortunately.
    Also, provide temporary access to your Dashboard.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 23, 2018 at 08:36

    Hello,

    If there is no element that is suitable for your needs, you can try to use an additional plugin.
    Please note that we don’t give guaranty for full theme compatibility with all 3-rd party plugins.
    Likely the desired result can be achieved via additional customization. Additional customization is not included in our basic support, unfortunately, so we won’t be able to help you with this. If you need help with additional customization you can contact WPKraken team

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 23, 2018 at 08:27

    Hello,

    You’re welcome!

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 23, 2018 at 08:24

    Hello,

    Please try to add this code in style.css file of your child theme:

    .product-content-image img {
        transition: transform .2s; 
    }
    .product-content-image img:hover {
        transform: scale(1.1);
    }

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 22, 2018 at 17:06

    Hello,

    If you face problems with translation, you need to be sure that your translation files are synchronized. Button Sync (Loco Translate plugin http://prntscr.com/glemdq) allows you to synchronize your translation file with pot file.
    If you need further assistance, provide temporary wp-admin and FTP access.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 22, 2018 at 17:02

    1) Go to Edit Home page > [8theme] Layout options > One page navigation
    Also, if you want to change current menu item color, please add this code in Theme Options > Custom css > Global custom css:

    .menu-wrapper>.menu-main-container .menu>.current-menu-item>a {
        color: black;
    }

    2) Theme Options > Menu > Menu styling > Main menu links > Border style > None

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 22, 2018 at 16:19

    Please see screenshot – http://prntscr.com/llngpa

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 22, 2018 at 15:37
    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 22, 2018 at 14:54

    You can add the same class mob-center for row or column with icons.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 22, 2018 at 14:38

    Hello,

    Please check FTP access. We can’t connect, unfortunately.
    Waiting for your reply.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 22, 2018 at 14:34

    Hello,

    1) The problem is caused by this https://prnt.sc/lllt4s > http://prntscr.com/llltp0
    2) Mail notification for orders relates to WC plugin. I would recommend you to contact woocommerce support.

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 22, 2018 at 11:02

    Hello,

    Thanks for the question.
    You can use WPBakery Page Builder to edit portfolio project page http://prntscr.com/lliq89

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 22, 2018 at 10:50

    Hello,

    You’re welcome!
    Feel free to ask if you have any other questions

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 22, 2018 at 10:47

    You’re welcome!

    Regards

    Avatar: Rose Tyler
    Rose Tyler
    Support staff
    November 22, 2018 at 10:47

    You’re welcome!

    Regards

  • 1 2 3 1,715 1,716 1,717 2,273 2,274 2,275
    Viewing 51,480 results - 51,451 through 51,480 (of 68,227 total)
Viewing 30 posts - 51,451 through 51,480 (of 68,227 total)
We're using our own and third-party cookies to improve your experience and our website. Keep on browsing to accept our cookie policy.