felr
Forum Replies Created
-
Hello Alvaro,
THANKS SO MUCH – looks great!!
This is awesome, not sure for how long I’d have to play around to get it to look like this. Thank you very much for your effort to help – if you happen to have a Bitcoin Lightning Network address to tips, let me know, I’d happily send you a few.
cheers and have a good weekend, R.
Thanks for your response, Alvaro!
This is how I am trying to make my header look, just with the icon LEFT of both the header text lines:
https://snipboard.io/T65mcq.jpg
How it looks right now is when you open the site itself, the image is on top of both header lines…Thanks for taking a look!
Thank you, this is awesome! I’m getting close ??
The site title and tagline are both displayed below the logo, and the site name has a strange font / size / font kerning setting … when I didn’t use the site logo, the font looked fine. Any idea how I can utilize the ‘regular’ font class for the site name from there?
cheers and thanks again, felr.
thanks for your response! It’s this addition to the code in the file:
`/**
* Filters the arguments fortwentytwenty_site_logo()
.
*
* @param string $html Compiled HTML based on our arguments.
* @param array $args Parsed arguments.
* @param string $classname Class name based on current view, home or single.
* @param string $contents HTML for site title or logo.
*/
add_filter( ‘twentytwenty_site_logo’, ‘include_logo_site_title’, 10, 4 );function include_logo_site_title( $html, $args, $classname, $contents )
{
// TODO: get the results in $html to return both logo and site title
return $html;
}Forum: Plugins
In reply to: [Acronyms 2] Fatal error triggered (PHP 8.1)Awesome, good to see you back and at this chance, THANKS for this useful plugin!
Forum: Plugins
In reply to: [Acronyms 2] Fatal error triggered (PHP 8.1)I’ve redefined this function to STATIC, this fixed the problem.
Would be great if Chris, the author, could throw in an update to bring it up to date w/ current WP & PHP releases again, this should just take a few minutes I guess. ??
- This reply was modified 2 years, 6 months ago by felr.
Forum: Plugins
In reply to: [Contact Form 7] Captcha logo displayed on *every* pageThank you very much, @marties !
Forum: Plugins
In reply to: [YASR - Yet Another Star Rating Plugin for WordPress] Stars disappearedwhere would I do that on https://yetanotherstarsrating.com ? I don’t see a comment section, only newsletter subscription.
Forum: Plugins
In reply to: [YASR - Yet Another Star Rating Plugin for WordPress] Stars disappearedHello Dudo,
thanks so much – unfortunately, this didn’t seem to have any impact.
I’ve tried several things based on your suggestion :– not to include jquery at all in my template (WP added it anyway along with all the other .js includes, so I suppose another plugin requested it?)
– only the wp_enqueue_script call
– replaced yasr_public_actions.php of the latest version with your linked on (w/o the wp_enqueue_script call or any other jquery call in my template of course).
Very strange… ??
Forum: Plugins
In reply to: [YASR - Yet Another Star Rating Plugin for WordPress] Stars disappearedHi,
very strange, I accidentally closed this thread and it was not easy to find it again as WordPress forums don’t seem to sort the threads correcly.
Anyhow, I’ve updated to the latest version and also tried with the file above, but both doesn’t help to display the stars again. The URL I’ve posted for you above is still up, so you can check the code openly.
cheers,
felrForum: Plugins
In reply to: [YASR - Yet Another Star Rating Plugin for WordPress] Stars disappearedThanks for the hint! I’ve fixed the missing reference, should work now.
Unfortunately it didn’t result in the stars to be displayed though.. ??
Thanks for your reply!
As you can see in the page source, I’ve already removed the schema code.
However, the stars are still not displayed, only the current (last) rating.
cheers,
felrForum: Plugins
In reply to: [YASR - Yet Another Star Rating Plugin for WordPress] Stars disappeared@dudo this is the page link (I just posted it in another thread): https://www.psychotherapiepraxis.at/pt-blog/depression-diagnose/
The current rating is displayed, but the stars for actually submitting a new rating are not visible after moving the code to my new template. ??
Thanks for your feedback, dudo!
one of the affected pages was this one: https://www.psychotherapiepraxis.at/pt-blog/depression-diagnose/
I haven’t changed anything in the blog content, only removed the schema generation by YASR. So if you grab the blog post text, you should be able to work out where the generated schema code broke. I recall correctly, the error was caused by double quotes or an URL in an embedded image or image footer text, or by the automatically created ‘keywordlink’ links in the text.Thanks for your other clarifications, I had missed that! I still think that an option to skip schema tag generation would be nice.
Hi ashi,
thanks for your feedback. Yes, the form is displayed, alone, the subscription doesn’t work. ??
I took the recommendation on having a clear line before+after the tag here:
https://www.ads-software.com/plugins/subscribe2/#installationThe code I have in my templates’s footer.php source for this form is as follows:
<?php print_r("\r\n<!--subscribe2-->\r\n\r\n"); ?> <form name="s2formwidget" method="post"> <input type="hidden" name="ip" value="<?php print getenv('REMOTE_ADDR');3 ?>"> <span style="display:none !important"> <input type="text" id="firstname" name="firstname" value="Besucher"> <input type="text" id="lastname" name="lastname" value="Besucher"> <input type="text" id="uri" name="uri" value="https://"> </span> <input type="email" name="email" id="s2email" value="Ihre Mail-Adresse" onfocus="value=''"> <input type="submit" name="subscribe" value="Subscribe"> </form>