Forum Replies Created

Viewing 30 posts - 271 through 300 (of 311 total)
  • Avatar: ycs7a
    ycs7a
    Participant
    December 14, 2016 at 12:02

    12. Is there a way to make a link to all the blogs in the widget ‘Recent Blogs’ (on my site called ‘Trends’)?

    I.e., in my footer there are on the left side two blogs: one called ‘Interview’, another ‘Ideale trouwringen’. But in order to access the other blogs, or to get an overview of them, I want to make a link in the word ‘Trends’.

    I saw that in the widget there is a option to ‘Add Custom CSS’. What should I write in order to make a link there to all the blogs?

    Avatar: ycs7a
    ycs7a
    Participant
    December 14, 2016 at 11:09

    ‘4c. I see the following code.

    I don’t want to mess things up:) How do I change things?

    
    // **********************************************************************// 
    // ! Share This Product
    // **********************************************************************// 
    
    add_shortcode('share', 'etheme_share_shortcode');
    if(!function_exists('etheme_share_shortcode')) {
    	function etheme_share_shortcode($atts, $content = null) {
    		extract(shortcode_atts(array(
    			'title'  => '',
    			'text' => '',
    			'tooltip' => 1,
    	        'twitter' => 1,
    	        'facebook' => 1,
    	        'pinterest' => 1,
    	        'google' => 1,
    	        'mail' => 1,
    			'class' => ''
    		), $atts));
    		global $post;
    		if(!isset($post->ID)) return;
    	    $html = '';
    		$permalink = get_permalink($post->ID);
    		$tooltip_class = '';
    		if($tooltip) {
    			$tooltip_class = 'title-toolip';
    		}
    		$image =  etheme_get_image( get_post_thumbnail_id($post->ID), 150,150,false);
    		$post_title = rawurlencode(get_the_title($post->ID)); 
    		if($title) $html .= '<span class="share-title">'.$title.'</span>';
    	    $html .= '
    	        <ul class="menu-social-icons '.$class.'">
    	    ';
    	    if($twitter == 1) {
    	        $html .= '
    	                <li>
    	                    <a href="https://twitter.com/share?url='.$permalink.'&text='.$post_title.'" title="'.__('Twitter', ET_DOMAIN).'" target="_blank">
    	                        <i class="ico-twitter"></i>
    	                        <svg width="38" height="38" xmlns="http://www.w3.org/2000/svg" class="circle">
    	                                <circle cx="19" cy="19" r="18" fill="rgba(255,255,255,0)" stroke="#000000"></circle>
    	                        </svg>
    	                    </a>
    	                </li>
    	        ';
    	    }
    	    if($facebook == 1) {
    	        $html .= '
    	                <li>
    	                    <a href="http://www.facebook.com/sharer.php?u='.$permalink.'" title="'.__('Facebook', ET_DOMAIN).'" target="_blank">
    	                        <i class="ico-facebook"></i>
    	                        <svg width="38" height="38" xmlns="http://www.w3.org/2000/svg" class="circle">
    	                                <circle cx="19" cy="19" r="18" fill="rgba(255,255,255,0)" stroke="#000000"></circle>
    	                        </svg>
    	                    </a>
    	                </li>
    	        ';
    	    }
    
    	    if($pinterest == 1) {
    	        $html .= '
    	                <li>
    	                    <a href="http://pinterest.com/pin/create/button/?url='.$permalink.'&media='.$image.'&description='.$post_title.'" title="'.__('Pinterest', ET_DOMAIN).'" target="_blank">
    	                        <i class="ico-pinterest"></i>
    	                        <svg width="38" height="38" xmlns="http://www.w3.org/2000/svg" class="circle">
    	                                <circle cx="19" cy="19" r="18" fill="rgba(255,255,255,0)" stroke="#000000"></circle>
    	                        </svg>
    	                    </a>
    	                </li>
    	        ';
    	    }
    
    	    if($google == 1) {
    	        $html .= '
    	                <li>
    	                    <a href="http://plus.google.com/share?url='.$permalink.'&title='.$text.'" title="'.__('Google +', ET_DOMAIN).'" target="_blank">
    	                        <i class="ico-google-plus"></i>
    	                        <svg width="38" height="38" xmlns="http://www.w3.org/2000/svg" class="circle">
    	                                <circle cx="19" cy="19" r="18" fill="rgba(255,255,255,0)" stroke="#000000"></circle>
    	                        </svg>
    	                    </a>
    	                </li>
    	        ';
    	    }
    
    	    if($mail == 1) {
    	        $html .= '
    	                <li>
    	                    <a href="mailto:enteryour@addresshere.com?subject='.$post_title.'&body=Check%20this%20out:%20'.$permalink.'" title="'.__('Mail to friend', ET_DOMAIN).'" target="_blank">
    	                        <i class="ico-envelope"></i>
    	                        <svg width="38" height="38" xmlns="http://www.w3.org/2000/svg" class="circle">
    	                                <circle cx="19" cy="19" r="18" fill="rgba(255,255,255,0)" stroke="#000000"></circle>
    	                        </svg>
    	                    </a>
    	                </li>
    	        ';
    	    }
    	    
    	    $html .= '
    	        </ul>
    	    ';
    		return $html;
    	} 
    }
    Avatar: ycs7a
    ycs7a
    Participant
    December 14, 2016 at 10:22

    Hi,

    Thank you.

    The problem seems to remain even though I have added the css code.

    See https://www.atelierchristian.nl/sieraden/page/86/

    Avatar: ycs7a
    ycs7a
    Participant
    December 14, 2016 at 10:18
    Avatar: ycs7a
    ycs7a
    Participant
    December 14, 2016 at 10:02

    The mobile view of Royal does not show when I use my actual phone (iPhone 4s or any other device) to my website.

    See the following images:

    https://www.dropbox.com/s/ad14k2brty8jz04/image1.PNG?dl=0
    https://www.dropbox.com/s/hj6nx0x2jisxsd3/image3.PNG?dl=0

    I want to send out a newsletter and seeing as everyone uses their cellphone nowadays, the mobile view must be to the new Royal theme version of my website.

    Please, contact administrator
    for this information.
    Avatar: ycs7a
    ycs7a
    Participant
    December 13, 2016 at 16:41

    ‘1. The products on the Home page look good, but on other pages it doesn’t.

    See https://www.atelierchristian.nl/sieraden/page/86/.

    Avatar: ycs7a
    ycs7a
    Participant
    December 13, 2016 at 15:06

    ‘3. You can see on the Home page that the head of the woman is cut off on her forehead. For different devices She is not visible, only a part of her back.

    How do I upload photo’s so that I can show you:)

    Avatar: ycs7a
    ycs7a
    Participant
    December 13, 2016 at 10:06
    Avatar: ycs7a
    ycs7a
    Participant
    December 13, 2016 at 10:05

    It worked! And on the real website it also works. Thank you Eva.

    Avatar: ycs7a
    ycs7a
    Participant
    December 13, 2016 at 10:03

    Dear Eva,

    Thank you kindly for taking the time to answer.

    ‘4a) Please see the test website for the top bar with widgets in question.

    ‘4c) In Theme Options > Header > Header custom HTML I see the following: <p>[share]</p>. Where do I change the [share] icons?

    ‘7) That is very unfortunate. Is there no way where I can achieve the same result?

    Thanks.

    Best regards,

    Christian

    Avatar: ycs7a
    ycs7a
    Participant
    December 13, 2016 at 02:24

    8. Is it possible to remove the text ‘Return to Previous Page’ on every page?

    9. The title of the grouped products runs over the sidebar. See for example https://www.atelierchristian.nl/webshop/sieraden-sets/14-karaat-geel-wit-en-rose-gouden-collier-armband-en-oorbellen-zirkonia/.

    19. How can I make the loading of the website as fast as possible? What plugins should I use, if any?

    11. On the Wishlist page, the social icon for Facebook is different. And the space between the Facebook icon and Twitter icon is empty and ‘jumps’ if the cursor is over it. How do I fix this? See e.g. https://www.atelierchristian.nl/wishlist/view/07NSVCMSI65X/.

    Avatar: ycs7a
    ycs7a
    Participant
    December 12, 2016 at 15:39

    Hi Eva,

    Thank you, but it didn’t help. Do you have a suggestion of how to solve this?:)

    Avatar: ycs7a
    ycs7a
    Participant
    December 12, 2016 at 15:24

    ‘4b. I have chosen Header 17, and in the preview of this Header I see that I can write text.

    In the preview of Header 17 I read the following: ‘Welcome in Woorom Guest! Login or Register’. Where can I alter this text?

    Avatar: ycs7a
    ycs7a
    Participant
    December 12, 2016 at 11:32

    7. On the Live Preview of the Royal Theme, you get to see images when you hover over a word in the menu bar. For instance, under Demo > Electronic > [hover mouse over word] image of Nokia Luma920.

    Link: http://preview.themeforest.net/item/royal-multipurpose-wordpress-theme/full_screen_preview/8611976?_ga=1.143094005.1332743067.1477339173

    How do get this effect?

    Avatar: ycs7a
    ycs7a
    Participant
    December 10, 2016 at 23:11

    2. Also, I have tried putting the ‘Shop Now’ Feature as on the Default Home page on my Slider Revolution, but to no avail.

    I have tried importing it, but that doesn’t work. Overall, I cannot get a link (like on the Home page) within the slider on my Home page: neither on a button (like ‘SHOP NOW’), nor on the image as a whole.

    3. Thirdly, I would like to know how to adjust the sizes on my images: after many, many attempts to get it right, I still cannot get the right size. For instance, the images on the Default Home page are 1600 x 545 px. Even if I make my image that size, it is still cropped (e.g. the head is cut off in part).

    How do get this right? Thank you

    Please, contact administrator
    for this information.
    Avatar: ycs7a
    ycs7a
    Participant
    December 10, 2016 at 10:52

    For login codes, see Private Content

    Please, contact administrator
    for this information.
    Avatar: ycs7a
    ycs7a
    Participant
    December 9, 2016 at 23:59

    Thank you.

    There is too much space between the ‘© Created with by 8Theme. All Rights Reserved’ and the 4 columns: logo ; Information ; image ; recent posts.

    I will try installing Royal on the main website and see whether this issue occurs like on the test websites

    Avatar: ycs7a
    ycs7a
    Participant
    December 7, 2016 at 21:12

    I installed the plugin for adding custom CSS. It worked.

    Thank you Eva!

    Question: how did you know where to look?

    Avatar: ycs7a
    ycs7a
    Participant
    December 7, 2016 at 21:00

    How do I use a Custom CSS editor: is it accessible within the admin panel? Or do I use FTP?

    Avatar: ycs7a
    ycs7a
    Participant
    December 7, 2016 at 18:56

    The issue with the header: please help

    Avatar: ycs7a
    ycs7a
    Participant
    December 7, 2016 at 15:16

    Okay, thank you:)

    Avatar: ycs7a
    ycs7a
    Participant
    December 7, 2016 at 15:15

    Dear Rose,

    Now there is an extra line. How do I remove this line?

    Avatar: ycs7a
    ycs7a
    Participant
    December 7, 2016 at 13:57

    Please assist me, I want to continue working on the website

    Avatar: ycs7a
    ycs7a
    Participant
    December 7, 2016 at 13:05

    I have tried different things, but now I cannot alter the Copyright Footer. The only thing standing there is the Visa, MasterCard thing.

    Avatar: ycs7a
    ycs7a
    Participant
    December 7, 2016 at 12:35

    The colours worked.

    But the footer issue remains.

    For login codes, see Private Content

    Please, contact administrator
    for this information.
    Avatar: ycs7a
    ycs7a
    Participant
    December 7, 2016 at 09:29

    See Private Content.

    Also, I tried making the footer like the static blocks video, but the bottom line ‘© Created with by 8Theme. All Rights Reserved’ [Mastecard, Visa etc.] kept showing up.

    Please, contact administrator
    for this information.
    Avatar: ycs7a
    ycs7a
    Participant
    December 6, 2016 at 22:19

    ‘1. This doesn’t work and it is of course essential that it does

    Avatar: ycs7a
    ycs7a
    Participant
    December 6, 2016 at 16:25

    Thank you Eva.

    When I make the Recents posts into a widget, and then place the widget in the Static Block, I then have the issue that the colour of the posts are grey.

    What CSS code do I use to make the Recent Posts colour back to the nice yellow-orange that is installed automatically?

    Avatar: ycs7a
    ycs7a
    Participant
    November 30, 2016 at 21:02

    As far as I can see, the problem was fixed!

    Thank you. Also, I think the main issue was with the third footer option (Theme Option -> Footer -> Footer Type -> 3rd).

    You might want to look into it, because I did nothing special with the website. I just installed it and the problem occurred.

    Avatar: ycs7a
    ycs7a
    Participant
    November 30, 2016 at 15:50

    If I try to change the colour of the background as you suggest, then the colours of the letters in the image changes as well. Furthermore, there appear white lines at the side of the footer, making them ‘boxed’ rather than stretched. Said differently, this approach is not a solution to my issue.

    I would like to comment that it is very frustrating that I have this issue. How can I simply install my footer correctly? If I do it for the home page in the way that is explained in the video about static blocks, then I get the result that the Royal default footer (with your logo and Flickr pictures etc.) appears on any other page than the Home page.

    What am I doing wrong here and why does this have to take so much time?

  • 1 2 3 9 10 11
    Viewing 300 results - 271 through 300 (of 311 total)
Viewing 30 posts - 271 through 300 (of 311 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.