• Resolved maestraweb

    (@maestraweb)


    I want the button to say “PAST SHOWS” on this page, rather than “READ MORE”. The buttons used on the other pages should still say “READ MORE”. There used to be a way to specify the button text within the shortcode but it doesn’t seem to work any more.

    The page I need help with: [log in to see the link]

Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author George Gkouvousis

    (@gkouvousisg)

    You can set the text in ‘RMWR Settings’ menu of wp-admin area, in the latest version.

    Thread Starter maestraweb

    (@maestraweb)

    YEs, but I can only set text for ALL buttons, correct? I can’t set it differently for a single button as I did before within the shortcode?

    Plugin Author George Gkouvousis

    (@gkouvousisg)

    Exactly. Shortcode is ignoring this text anymore and is using field text from plugin’s settings for global use.

    This was a feature request that went into implementation after a heavy number of similar function requests. I am sorry that it doesnt work for you – but you can still work with older versions of the plugin. They are Gutenberg ready and latest-core-version-ready ??

    Thread Starter maestraweb

    (@maestraweb)

    Nope, the old plugin crashed and I had to update. How can I download the old version in a stable form?

    Plugin Author George Gkouvousis

    (@gkouvousisg)

    Take a look at this guide: https://kinsta.com/knowledgebase/download-older-versions-of-wordpress-plugins/ – it will help you find out the older versions available for download.

    Hello Maestraweb,

    I sent to George a recommendation to allow the user to use specific text if needed

    [read more="Deuxieme Loco" less="Très loquito"]J'admets que tu as eu raison. Je le connais, c'est un fait.Le deuxieme version[/read]

    Even you can use the [read] [/read] multiple times so you could break the schedule like

    
    [read more="Spring Session 2018" less="Visit Canada - Read Less to View More"][/read]
    [read more="Summer Session 2018" less="View Less"][/read]

    Works really well!

    Plugin Author George Gkouvousis

    (@gkouvousisg)

    @maestraweb have you checked the mentioned method by @ricardowordpress ?

    @gkouvousisg My post was related to make some changes to your plugin, to allow @maestraweb use the updated plugin and enjoy if new versions come out in the future.

    I read another request to present the option “Read Less” after all the text, and make sense if the content to display is too long, the reader would need to go up to apply the “read less”.

    For a sustainable “programming environment”, i suggest to read the business model from Cybertracker, field data collection CyberTracker is freeware and is supported through donors and community funded features.

    (Programmers can’t survive only with likes and beautiful stars.)

    <Read Less>

    No se en donde esta el error
    Esto no esta apareciendo en la pantalla

    Weird test connection
    J’admets que tu as eu raison. Je le connais, c’est un fait.

    <Read Less>

    Once the horse is tamed, everyone wants to ride it !

        $new_string .= '<div class="read_div" id="read' . $rnum . '" style="display: none;">' . do_shortcode($content)
            . '<span><a onclick="read_toggle(' . $rnum
            . ', \''
            . $more
            . '\', \''
            . $less . '\''
            . '); return false;" class="read-link-less"'
            . '" style="readlink" href="#">'
            . $less
            . '</a></span>' . "\n"
            . '</div>';
    

    Some styling ?

    .read-link-less {
     background: <?php echo get_option('rmwr_background_color'); ?>;
     color: white;
     padding: <?php echo get_option('rmwr_padding') .' 10px'; ?>;
     border-radius:3px;
    }
    
    .read-link-less:hover {
     font-weight: <?php echo get_option('rmwr_font_weight'); ?>;
     color: <?php echo get_option('rmwr_text_color'); ?>;
     padding: <?php echo get_option('rmwr_padding'); ?>;
     border-bottom: <?php echo get_option('rmwr_border_bottom'); ?>
     solid <?php echo get_option('rmwr_border_bottom_color'); ?>;
    }
    

    I learned a lot from your implementation. Thanks.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Change button text on one page, other pages use default’ is closed to new replies.