vikou1008
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Optimismo] header position changes between index/singleActually resolved this (just a space block to suppress on top of header in index.
Forum: Themes and Templates
In reply to: [Ryu] Replace “Read more” link by button?I could create a button with some css indeed.
I will look into the old tutorial.
Thank you very much for your help!
v.Forum: Themes and Templates
In reply to: [Ryu] Change the “read more” link text on specific postsHi Kathryn,
I figure what the issue is.
<!–more Keep on reading!–> doesn’t work because I’ve added this to my theme functions:
add_filter( ‘the_content_more_link’, ‘modify_read_more_link’ );
function modify_read_more_link() {
return ‘READ’;
}Thank you so much for your help.
Have a great day,
v.Forum: Themes and Templates
In reply to: [Ryu] Replace “Read more” link by button?And also, is it possible to get the “read more” link to scroll at the beginning of the post (at the level of the post category or title) instead of the “more” anchor?
Forum: Plugins
In reply to: [Captcha] Captcha Not AppearingHi,
I actually have the exact same issue. The plugin was working great for a long time, and the captcha no longer appears since the last update. I use it for the BWS contact form.
Could you help fixing this bug? This isn’t an isolated problem.
Forum: Themes and Templates
In reply to: [Ryu] Change '(more…)' link in seach resultsHi,
Thank you for your suggestion, but I actually found the solution, just adding this in the theme functions:
add_filter( 'the_content_more_link', 'modify_read_more_link' ); function modify_read_more_link() { return '<a class="more-link" href="' . get_permalink() . '">Read more →</a>'; }
If ever this helps anyone else.
Best!
Forum: Themes and Templates
In reply to: [Ryu] Change '(more…)' link in seach resultsHi,
Thank you for your answer.
I’ve deactivated my copyright protection for now, so the right click is possible again.
I’ve tried the code you suggested, but it didn’t change the ‘(more…)’ text of the more-link in search results.
The only thing I’ve actually customized in the search results area is that I’ve asked for the full content to display instead of just an excerpt in the content.php file.
<?php if ( is_search() ) : // Display full content for Search ?> <div class="entry-content"> <?php the_content(); ?> </div><!-- .entry-content -->
I haven’t customized anything else in this area, since I can’t find the more-link text ‘(more…)’ of search results only anywhere in the php files, although I could change it anywhere else into ‘Read more’ and an arrow.
Any thought?
Thank you ??
Forum: Themes and Templates
In reply to: [Ryu] Change '(more…)' link in seach resultsHi,
No this is absolutely not resolved.
The text that I specifically want to change is the more-link, which appears within posts after a search in RESEARCH RESULTS ONLY, which currently appears as ‘(more…)’.
Anywhere else I’ve indeed figured out how to change the more-link into my ‘read more’ with an arrow, just not in the SEARCH RESULTS.
Any idea?
Thank you ??
Forum: Themes and Templates
In reply to: [Ryu] Change input text in search barSorry all of this worked to perfection! Thank you.
The problem before is that instead of copying-pasting your code from here, I selected it from the email I received, which generated errors.
Thank you very much!
Forum: Themes and Templates
In reply to: [Ryu] Change input text in search barHi Bojan,
Thank you for your help.
Actually the css to remove the italics didn’t work, and the jQuery to change the input text in the search bar actually crash my website (some syntax error it says). All back to normal now.
Any other way?
??
Perfect!
Thank you!
No it doesn’t work. Thank you though.
Before the last update, it used to work with the following code, but not anymore:
.cntctfrm_label,
.cntctfrm_input,
.cntctfrm_select,
.cntctfrm_checkbox {
max-width: 100%;
}I just want the width of the contact form to adapt to the max width of the post.
Thank you for helping
Yes, I would like the width of the contact form to stretch to the entire width of the the page, when consulted on a computer. Right now it seems that the contact form is small and fixed so as to fit mobile devices, but I’d like it to be able to expand so as to fit my website page when consulted from a desktop as well.
Thank you for the help!
Here is the link where the contact form is located.
I’d like its width to adapt to the screen.
Thank you for your help.
Forum: Themes and Templates
In reply to: [Ryu] Tags and Author below contentOr to always have it below, whether viewed from a mobile or desktop. In this case, the content area would be full width.
Thank you for your help.