ziomik
Forum Replies Created
-
thank you!
Forum: Plugins
In reply to: [SEO Plugin by Squirrly SEO] Lost connection with the serverIt’s ok, thanks
Forum: Plugins
In reply to: [CodesWholesale.com for WooCommerce] PHP 5Until that moment, few will use it. Debian does not use it and as long as it will not be in their repositories I do not intend to put my hand to the server. So many will be in my storage right now.
Forum: Plugins
In reply to: [BitMate Author Donations] Problem qrcode and altcoinI did what you say. I only have bitcoin and zcash active but the qrcode is not seen. It seems that phpqrcode.php does not work..
look at yourself: https://blog.comprarebitcoin.info
EDIT:
My php doesn’t have the gd library installed
sudo apt-get install php5-gd and all OK
Bye e thanks- This reply was modified 6 years, 12 months ago by ziomik.
Forum: Plugins
In reply to: [WebTorrent] Can’t make it workWebTorrent can only download torrents that are explicitly seeded to the WebTorrent network. Torrent clients need to support WebRTC to peer with web browsers.
Forum: Plugins
In reply to: [WebTorrent] Can’t make it workquote.. :/
Forum: Plugins
In reply to: [BitMate Author Donations] the_content EMPTYThe code will strip the content if the get_the_author_meta(‘bitcoin’) does not exist
ORIGINAL:
/* Add BitMate Donation Box After Posts */ add_filter( 'the_content', 'bm_author_donation_box' ); function bm_author_donation_box($content) { $display_options = get_option( 'bitmate_author_donations_display_options' ); if( isset( $display_options['display_bm_post_box'] ) && $display_options[ 'display_bm_post_box' ] && !is_page() ) { $bm_site_name = get_bloginfo( 'name' ); $bm_author_name = get_the_author_meta( 'display_name' ); $bm_post_url = get_permalink(); $bm_author_bitcoin = get_the_author_meta( 'bitcoin' ); $bm_author_donate_url = 'bitcoin:'. $bm_author_bitcoin.'?label=Donation-from%3A'. urlencode($bm_post_url) .'&message=Donation-from%3A'. urlencode($bm_post_url) .''; if( isset( $display_options['display_bm_author_credit'] ) && $display_options[ 'display_bm_author_credit' ] ) { $bm_author_credit = '<br/><small class="bitmate-author-credit"><a href="https://bitmate.net/author-donations/" rel="nofollow" class="bitmate-author-credit">Powered by BitMate Author Donations</a></small>'; } else { $bm_author_credit = ''; } $bm_donation_box=' <div class="bitmate-author-donation"> <div class="bitmate-author-scan"> <a href="'.$bm_author_donate_url.'" title="Scan to Donate Bitcoin to '.$bm_author_name.'"><img src="https://chart.googleapis.com/chart?chs=150x150&cht=qr&chld=H|0&chl='.$bm_author_donate_url.'" alt="Scan to Donate Bitcoin" /></a> </div> <div class="bitmate-author-description"> <strong>Ti piace?</strong> Donata Bitcoin a <a href="'. get_author_posts_url( get_the_author_meta( 'ID' ) ) .'" title="'. $bm_author_name .'" rel="author">'. $bm_author_name .'</a> : <br/> <a href="'.$bm_author_donate_url.'" title="Donate Bitcoin to '. $bm_author_name .'"><img src="'.plugins_url( 'images/bitcoin.png' , __FILE__ ).'" alt="Bitcoin" /> <strong>'. $bm_author_bitcoin .'</strong></a></a> <br/> <a href="'.$bm_author_donate_url.'" title="Donate Bitcoin to '.$bm_author_name.'"><img src="'.plugins_url( 'images/donate.png' , __FILE__ ).'" alt="Donate" class="bitmate-author-donate-button"/></a> '. $bm_author_credit .' </div> </div> '; if ( get_the_author_meta( 'bitcoin' ) ) { return $content.= ($bm_donation_box); } } else { return $content; } }
FIX:
/* Add BitMate Donation Box After Posts */ add_filter( 'the_content', 'bm_author_donation_box' ); function bm_author_donation_box($content) { $display_options = get_option( 'bitmate_author_donations_display_options' ); if( isset( $display_options['display_bm_post_box'] ) && $display_options[ 'display_bm_post_box' ] && !is_page() ) { $bm_site_name = get_bloginfo( 'name' ); $bm_author_name = get_the_author_meta( 'display_name' ); $bm_post_url = get_permalink(); $bm_author_bitcoin = get_the_author_meta( 'bitcoin' ); $bm_author_donate_url = 'bitcoin:'. $bm_author_bitcoin.'?label=Donation-from%3A'. urlencode($bm_post_url) .'&message=Donation-from%3A'. urlencode($bm_post_url) .''; if( isset( $display_options['display_bm_author_credit'] ) && $display_options[ 'display_bm_author_credit' ] ) { $bm_author_credit = '<br/><small class="bitmate-author-credit"><a href="https://bitmate.net/author-donations/" rel="nofollow" class="bitmate-author-credit">Powered by BitMate Author Donations</a></small>'; } else { $bm_author_credit = ''; } $bm_donation_box=' <div class="bitmate-author-donation"> <div class="bitmate-author-scan"> <a href="'.$bm_author_donate_url.'" title="Scan to Donate Bitcoin to '.$bm_author_name.'"><img src="https://chart.googleapis.com/chart?chs=150x150&cht=qr&chld=H|0&chl='.$bm_author_donate_url.'" alt="Scan to Donate Bitcoin" /></a> </div> <div class="bitmate-author-description"> <strong>Ti piace?</strong> Donata Bitcoin a <a href="'. get_author_posts_url( get_the_author_meta( 'ID' ) ) .'" title="'. $bm_author_name .'" rel="author">'. $bm_author_name .'</a> : <br/> <a href="'.$bm_author_donate_url.'" title="Donate Bitcoin to '. $bm_author_name .'"><img src="'.plugins_url( 'images/bitcoin.png' , __FILE__ ).'" alt="Bitcoin" /> <strong>'. $bm_author_bitcoin .'</strong></a></a> <br/> <a href="'.$bm_author_donate_url.'" title="Donate Bitcoin to '.$bm_author_name.'"><img src="'.plugins_url( 'images/donate.png' , __FILE__ ).'" alt="Donate" class="bitmate-author-donate-button"/></a> '. $bm_author_credit .' </div> </div> '; if ( get_the_author_meta( 'bitcoin' ) ) { return $content.= ($bm_donation_box); } } return $content; }
Thanks to the author of the fix (Dion), creator of BRIDGEDD https://bridgedd.com/
Error 500 even with all your products “GC Message Bar” and “GC Message Box” active “Jetpack by WordPress.com”
disabling plugins “Jetpack by WordPress.com” resolves but it is a great plugin that I want to keep using.
I have the same problem. Tried reinstalling but still error 500
Forum: Themes and Templates
In reply to: convert comments to forum postsquote
Forum: Reviews
In reply to: [WP w3all phpBB] GreatCodepinch Widgets plugin provided me these errors of your plugin.
Codepinch asked me if I wanted fixare errors. I told you, and has settled down, so now I have no more errors.
The server is a Debian Linux server on Apache.Forum: Reviews
In reply to: [WP w3all phpBB] GreatHi and thanks.
The server is under linux but even if I had these errors there have been no problems.
What I’d like it to be implemented (even if it was paying) is:
I need for every article That I do on wordpress is shared in phpbb via a post.
I Need That comments of the items created in response to the post.
Thank’sI have the same problem. PHP is updated but when I click on a product I error 404
Test: https://www.photofinish.info/Forum: Fixing WordPress
In reply to: "Trackbacks are closed, but you can post a comment"Hello, same problem. You solved? Thank you