Alex Kozack
Forum Replies Created
-
Forum: Plugins
In reply to: [Yoast SEO] Duplicate site name@shaytorn, There is no site name in the page title. In addition, in the source code of “How Google sees the page” in the <title> tag, the name of the site is present only once. Nevertheless, in the search results, the name of the site is present twice.
If my <title> tag is
Page title ~ site name
That in search results
Page title ~ site name - site name
Forum: Plugins
In reply to: [WP Super Cache] Rebuild only certain pages after adding PostI join the question. Perhaps there are some API functions to rebuild and/or delete the cache of a particular page?
I could use them along with the WordPress hookpublish_post
to update the main page cache and the category pages, rather than rebuilding the cache of the entire siteForum: Plugins
In reply to: [WordPress Popular Posts] How to: ajax widget onload callbackNo. In my theme there is a plug-in for creating a Tile. It starts when the page loads, but before the popular popular are loaded. I’m must to catch the moment when popular posts will be loaded and restart the plug-in to stand the tile.
I created a pull request, which I think will solve this problem if you do not have another solution
- This reply was modified 7 years, 5 months ago by Alex Kozack.
Forum: Plugins
In reply to: [WordPress Popular Posts] most viewed is 0I have a similar problem.
<div id="error"><p class="wpdberror"><strong>Ошибка базы данных WordPress:</strong> [Unknown column 'view_datetime' in 'field list']<br /><code>INSERT INTO wp_popularpostssummary (postid, pageviews, view_date, view_datetime) VALUES (47956, 1, '2017-10-19', '2017-10-19 15:10:43') ON DUPLICATE KEY UPDATE pageviews = pageviews + 1, view_datetime = '2017-10-19 15:10:43';</code></p></div>WPP: Oops, could not update the views count!
Forum: Plugins
In reply to: [WordPress Popular Posts] Category IDThe layout of my template requires the ID of the category on the post container:
<article class="post-1 cat-1"><!-- other post html --></article> <article class="post-2 cat-5"><!-- other post html --></article> <article class="post-3 cat-1"><!-- other post html --></article>
So for me it would be very useful to have in the template a tag for the category ID
Forum: Plugins
In reply to: [Optimus - WordPress Image Optimizer] Configuration to deliver WebPresolved by this code:
set $webp ""; if ($http_accept ~* image/webp) { set $webp ".webp"; } location ~* ^(/wp-content/.+)\.(png|jpe?g)$ { expires 30d; root $root_path; default_type image/webp; add_header Vary Accept; try_files $1$webp $uri =404; }
- This reply was modified 8 years ago by Alex Kozack.
Forum: Plugins
In reply to: [OptionTree] Visual textarea does not workShow me example
Forum: Plugins
In reply to: [WordPress Related Posts] How use this plugin with custom post type ?Mateja, will you add support the custom post types in plugin v2.0 ?
Forum: Plugins
In reply to: [WordPress Related Posts] How use this plugin with custom post type ?It works on my website – tobefun.org with post whose post type = portfolio
BUT IT IS DARK MAGIC
P.S.I can send you my version of the plugin, if you give me your email
Forum: Plugins
In reply to: [WordPress Related Posts] How use this plugin with custom post type ?I can add in your plugin hold switch to select the post type
Forum: Plugins
In reply to: [Contact Form 7] checkbox is not showingI checked your code – it is absolutely true, as I have work fine. You can find the error in another place