wilfried

Forum Replies Created

Viewing 15 posts - 31 through 45 (of 105 total)
  • Author
    Posts
  • in reply to: admin menu is gone #113768
    wilfriedwilfried
    Participant
    • Topics: 43
    • Replies: 105
    • Total: 148
    Member since: December 7, 2017

    Thank you. Sometime solutions is simple 😉
    I will try to not forget this 🙂

    in reply to: page without header and footer #113767
    wilfriedwilfried
    Participant
    • Topics: 43
    • Replies: 105
    • Total: 148
    Member since: December 7, 2017

    Thank you. Just done so.

    in reply to: bug capital in each word #113687
    wilfriedwilfried
    Participant
    • Topics: 43
    • Replies: 105
    • Total: 148
    Member since: December 7, 2017

    Thank you, I can go on with this 🙂

    in reply to: bug capital in each word #113683
    wilfriedwilfried
    Participant
    • Topics: 43
    • Replies: 105
    • Total: 148
    Member since: December 7, 2017

    I have now 4 colums in footer. How can I change that to 3 or 2 colums?

    in reply to: bug capital in each word #113662
    wilfriedwilfried
    Participant
    • Topics: 43
    • Replies: 105
    • Total: 148
    Member since: December 7, 2017

    I found it myself 😉

    In custom css:

    #nav ul li {
        text-transform: none;
    }
    in reply to: admin menu is gone #113629
    wilfriedwilfried
    Participant
    • Topics: 43
    • Replies: 105
    • Total: 148
    Member since: December 7, 2017

    Thank you Brad, again for nice and fast service. What was the problem?

    in reply to: admin menu is gone #113613
    wilfriedwilfried
    Participant
    • Topics: 43
    • Replies: 105
    • Total: 148
    Member since: December 7, 2017

    Payment done 😉

    in reply to: admin menu is gone #113598
    wilfriedwilfried
    Participant
    • Topics: 43
    • Replies: 105
    • Total: 148
    Member since: December 7, 2017

    Hi Brad: done
    Hi Shri: I will do soon, because I probably need some help if I do on with this theme. But this looks like a bug. So do I need to pay to solve the bug?

    best regards, Wilfried

    in reply to: Twitter tracking code #112500
    wilfriedwilfried
    Participant
    • Topics: 43
    • Replies: 105
    • Total: 148
    Member since: December 7, 2017

    Thank you.

    in reply to: Twitter tracking code #112402
    wilfriedwilfried
    Participant
    • Topics: 43
    • Replies: 105
    • Total: 148
    Member since: December 7, 2017

    Thank you, it is solved.

    Can you please tell me what exactly you changed? It is interesting for me to know.

    Thank you, Wilfried

    in reply to: Twitter tracking code #112259
    wilfriedwilfried
    Participant
    • Topics: 43
    • Replies: 105
    • Total: 148
    Member since: December 7, 2017

    Done, thank you. Regards Wilfried

    in reply to: remove area if no pictire set #102472
    wilfriedwilfried
    Participant
    • Topics: 43
    • Replies: 105
    • Total: 148
    Member since: December 7, 2017

    Thank you

    in reply to: remove area if no pictire set #102396
    wilfriedwilfried
    Participant
    • Topics: 43
    • Replies: 105
    • Total: 148
    Member since: December 7, 2017

    site: http://actisan.be / wp /
    theme: gardening

    Hi,

    I want to make background of title transparent (set the opacity). How to do?
    This is example of area that I want to set opacity: https://imgur.com/tlo3Tdr

    Regards, Wilfried

    in reply to: specify alt and title for [client] shortcode #102371
    wilfriedwilfried
    Participant
    • Topics: 43
    • Replies: 105
    • Total: 148
    Member since: December 7, 2017

    I messed up the option 1 in my reply. In fact it is just change the line with ‘alt’ in it and after the return you have to add ‘alt’ and ‘title’ as in the second option.

    in reply to: specify alt and title for [client] shortcode #102366
    wilfriedwilfried
    Participant
    • Topics: 43
    • Replies: 105
    • Total: 148
    Member since: December 7, 2017

    I found it myself. In case someone else need this. There are 2 options, first is fast, second is preferable:

    1. you an edit the code in wp-content/themes/skt-gardening/sktframe/core-functions.php like this:
    function clientbox($atts){
    extract( shortcode_atts(array(
    ‘url’ => ‘url’,
    ‘image’ => ‘image’,
    ‘alt’ => ‘alt’
    ), $atts));

    return ‘
    <div class=”clientbox”>
    '.$alt.'`

    2. You can make a plugin for it (looks safer) where you can add other things as well. Create a folder eg: ‘my-thing’, put there a file in and name it ‘my-thing.php’, then put the following in that file:

    <?php
    /*
      Plugin Name: My Thing
      Description: some description
      Author: your name
      Version: 1.0
      Author URI: http://your site
    */
    
    // Shortcode MyClient
    /*[myclient url="#" image="image" alt="alt"]*/
    function myclientbox($atts){
    		extract( shortcode_atts(array(
    			'url' => 'url',
    			'image' => 'image',
    			'alt' => 'alt'
    		), $atts));
    		
    		return '
                    <div class="clientbox">
                        <a href="'.$url.'" target="_blank"><img src="'.$image.'" alt="'.$alt.'" title="'.$alt.'" /></a>
                    </div>
    		';
    }
    add_shortcode('myclient','myclientbox');

    Then use the shortcode [myclient] instead of [client].

    Of course if someone knows other / better options the please share 😉

Viewing 15 posts - 31 through 45 (of 105 total)