hey, saguaros
thank you for your answer
in the News Show Pro widget, I wanted the final readon link to be placed elsewhere than the default position, like in the picture for example
I found a solution working for my site, I want to share it if helpful to some other user
the right place to put the hands is not in the theme folder, but in the plugin folder
it also depends on the wrapper you choose in the backend (in the widget settings Widget layout > Article wrapper > your choice: default, portfolio, etc.)
so the right path to the file is:
wp-content > plugins > gk-nsp > article-wrappers > your choice, for example default > default.php
the code responbible of generating the readon link starts more or less at line 111
if($links_readmore_state == 'on') {
echo $this->generator->link_readmore();
}
I moved it to the bottom, after the last closing echo command, and added a couple of div tag to get it styled in override.css, and the result is something like this:
// closing the widget wrapper
echo '</div>';
if($links_readmore_state == 'on') {
echo '<div class="bar-link-readmore-globale">';
echo '<div class="text-link-readmore-globale">';
echo $this->generator->link_readmore();
echo '</div>';
echo '</div>';
}
do_action('gk_nsp_after_wrapper');
only the if statement is what I actually moved and added, the code lines before and after the if statement are shown only to find the right place inside the file
have you got a better tip to suggest? otherwise I can consider the question as solved
thank you again