Viewing 5 replies - 1 through 5 (of 5 total)
  • Have a look near line 68 of stout-gc-widget.php
    I would imagine that you could wrap $title within a hyperlink.
    If that works, all of your stout widgets would link to the same URL.

    Hmmm… wonder if I could use this myself…

    Thread Starter DW Serveis

    (@dw-serveis)

    hi,

    thnaks a lot for your answer, it’s veru useful but i can’t not wrap $title within a hypelink… i can add some text but not a hyperlink, can you help me?

    thanks

    Thread Starter DW Serveis

    (@dw-serveis)

    hey,

    i got it:

    { echo $before_title. $title . ‘ – Ampliar‘; }

    thanks a lot!

    Don’t forget to include $after_title. Your theme (or any future themes you switch to) may require it to close a div or some such.

    This makes the title a link:
    if ( $show_name ) { echo $before_title . '<a href="../events">' . $title . '</a>' . $after_title; }

    This puts a link after the title:
    if ( $show_name ) { echo $before_title . $title . ' - <a href="../events">View All</a>' . $after_title; }

    I think I’ll use the latter. Thanks for the idea ??

    Thread Starter DW Serveis

    (@dw-serveis)

    hi,

    thanks for your reminder!

    regards

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘[Plugin: Stout Google Calendar] add a link on the sidebar calendar’ is closed to new replies.