Mihail D
Forum Replies Created
-
Forum: Plugins
In reply to: [Redirection] Cookie nonce is invalidcaching issue
logout + clear storage + relogin helps
Forum: Plugins
In reply to: [Co-Authors Plus] possible to list all authors’ biographies in the footersomething like this
if ( function_exists( 'get_coauthors' ) ) { $coauthors = get_coauthors(); foreach( $coauthors as $coauthor ) { // var_dump($coauthor) // ...... // $coauthor->ID // $coauthor->display_name // $coauthor->user_email } }
Forum: Plugins
In reply to: [Disqus Comment System] JS error Cannot read property ‘appendChild’ of nullsame issue reproduced for me in all my POSTs (means post_type=page)
WordPress 5.0.2Forum: Plugins
In reply to: [Yoast SEO] Images gone after 7.4 and 7.4.1 updatetoo strange last changes…
Why need to rename function names ??
like this get_posts_page_image() -> set_posts_page_image()
file \frontend\class-opengraph-image.php
// and why comments still old ??/** * Get the images of the posts page. * * @return void */ private function set_posts_page_image() { $post_id = get_option( 'page_for_posts' ); $this->set_image_post_meta( $post_id ); if ( $this->has_images() ) { return; } $this->set_featured_image( $post_id ); } /** * Get the images of the singular post. * * @param null|int $post_id The post id to get the images for. * * @return void */ private function set_singular_image( $post_id = null ) {
Forum: Plugins
In reply to: [Woopra Analytics Plugin] Download Plugin file – ERROR 404: Not Foundthank you
Forum: Plugins
In reply to: [Infogram - Add charts, maps and infographics] Plugin not compatible with 4.6+1
got the same ??Forum: Plugins
In reply to: [BackUpWordPress] Empty database dump after updateis plugin tested on PHP version 5.4 ?
Have 2 servers with the same copied sources+db
on 5.6.14 – plugin working correctly
but on 5.4.39 – empty tablescan be php version is a reason uncompability ?
Forum: Plugins
In reply to: [BackUpWordPress] Empty database dump after updatethank you Kat
also will investigate(debug) this issue myself little laterForum: Plugins
In reply to: [BackUpWordPress] Empty database dump after updatesorry for your confusion
problem still not resolved, still empty dump ??Forum: Plugins
In reply to: [BackUpWordPress] Empty database dump after updateSorry, found error myself
PHP
ZipArchive YesServer
zip command No <– This was a solution
mysqldump command mysqldumpForum: Plugins
In reply to: [Yoast SEO] Small suggestions (add LinkedIn in contact methods)// Add LinkedIn $contactmethods['linkedin'] = __( 'LinkedIn (without https://linkedin.com/in/) or type whole url with https:// or https://', 'wordpress-seo'
or simply this 2 rows ??
Forum: Plugins
In reply to: [Digg Digg] No Facebook Share buttonsource above for floating box (‘Facebook Share’ must be checked)
Forum: Plugins
In reply to: [Digg Digg] No Facebook Share buttonMy local solution next:
In your themes in file single.php add next rows
<div id="fb-root"></div> <script>(function(d, s, id) { var js, fjs = d.getElementsByTagName(s)[0]; if (d.getElementById(id)) return; js = d.createElement(s); js.id = id; js.src = "//connect.facebook.net/en_EN/sdk.js#xfbml=1&version=v2.3"; fjs.parentNode.insertBefore(js, fjs); }(document, 'script', 'facebook-jssdk'));</script>
and add this rows in plugin file /plugins/digg-digg/digg-digg.php
rows 316-320
(
before this line
$floatButtonsContainer .= “<div class=’dd_button_v’>” . $finalURL . “</div><div style=’clear:left’></div>”;
)if(preg_match("#.*name='fb_share'.*share_url='(?<url>[^']+)'.*#sU", $finalURL, $m)){ if (isset($m['url'])) $finalURL = '<div class="fb-share-button" data-href="' . $m['url'] . '" data-layout="button"></div>'; }
Forum: Plugins
In reply to: [Crop-Thumbnails] "Save crop" not savingHi all
the same issue was on my serversreceived next error:
Cant copy temporary file to media-library. | Cant delete temporary file.Reason = was not created folder for tmp files.
Resolution: create next /tmp folder by your /upload
other words – must be created this folder: /wp-content/uploads/tmpForum: Plugins
In reply to: [Digg Digg] HTTP vs. HTTPS counter supportplugin not supported ?
Any idea to fix this issue ?