Title: Noob2000's Replies | WordPress.org

---

# Noob2000

  [  ](https://wordpress.org/support/users/noob2000/)

 *   [Profile](https://wordpress.org/support/users/noob2000/)
 *   [Topics Started](https://wordpress.org/support/users/noob2000/topics/)
 *   [Replies Created](https://wordpress.org/support/users/noob2000/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/noob2000/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/noob2000/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/noob2000/engagements/)
 *   [Favorites](https://wordpress.org/support/users/noob2000/favorites/)

 Search replies:

## Forum Replies Created

Viewing 11 replies - 1 through 11 (of 11 total)

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Feed Manager for WooCommerce – CTX Feed – Support 220+ Shopping & Social Channels] String replace with comma seperated items not working](https://wordpress.org/support/topic/string-replace-with-comma-seperated-items-not-working/)
 *  Thread Starter [Noob2000](https://wordpress.org/support/users/noob2000/)
 * (@noob2000)
 * [3 years, 4 months ago](https://wordpress.org/support/topic/string-replace-with-comma-seperated-items-not-working/#post-16430668)
 * Problem resolved. Had a duplicted attribute due to translation of attribute with
   Germanized which caused the issue.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Germanized for WooCommerce] Delivery times issues on variations since update](https://wordpress.org/support/topic/delivery-times-issues-on-variations-since-update/)
 *  Thread Starter [Noob2000](https://wordpress.org/support/users/noob2000/)
 * (@noob2000)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/delivery-times-issues-on-variations-since-update/#post-15063120)
 * Thank you for the quick response and the patch! Awesome!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Feed PRO for WooCommerce by AdTribes – Product Feeds for WooCommerce] Variations image in Product Feed](https://wordpress.org/support/topic/variations-image-in-product-feed/)
 *  Thread Starter [Noob2000](https://wordpress.org/support/users/noob2000/)
 * (@noob2000)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/variations-image-in-product-feed/#post-15012632)
 * Thank you, concerning additional images, this is fine.
 * But, why does your plugin not fetch the variations image (equals to main image)?
 * What can I do?
    -  This reply was modified 4 years, 7 months ago by [Noob2000](https://wordpress.org/support/users/noob2000/).
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Feed PRO for WooCommerce by AdTribes – Product Feeds for WooCommerce] Variations image in Product Feed](https://wordpress.org/support/topic/variations-image-in-product-feed/)
 *  Thread Starter [Noob2000](https://wordpress.org/support/users/noob2000/)
 * (@noob2000)
 * [4 years, 7 months ago](https://wordpress.org/support/topic/variations-image-in-product-feed/#post-15009241)
 * Furthermore additional images are also not fetched.
 * FYI, I’m running “Additional Variation Images Gallery for WooCommerce” as plugin
   for additional images.
 * Thank you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] Pagination with %%page%% in description also for og](https://wordpress.org/support/topic/pagination-with-page-in-description-also-for-og/)
 *  Thread Starter [Noob2000](https://wordpress.org/support/users/noob2000/)
 * (@noob2000)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/pagination-with-page-in-description-also-for-og/#post-14435310)
 * Thank you.
 * I am using Avada theme. I put `%%page%%` in a costum **page** title AND description.
   I am running an online shop and have a product catalogue on my starting page.
   That’s why I need pagination there.
 * Didn’t check with 2021. Will try that.
 * Meanwhile I found an interesting workaround by using the following plugin code
   and added a filter for the open graph description (`og:description`). That combined
   with your variable `%%page%%` in title did the trick. (Just if anyone else having
   the same issue and does a search on this I’ll post it below.)
 * I now have what I want:
 * – meta description with “(…)| Page: x”
    – title with “(…)| Page x from y” – og:
   description with “(…)| Page: x” – og:title with “(…)| Page x from y”
 * The plugin code (simply generate folder with plugin name and copy the following
   code as php file into that newly created folder):
 *     ```
       <?php # -*- coding: utf-8 -*-
       /**
        * Plugin Name: T5 Add page number to title
        * Description: Adds <code> | Page $number</code> to the page title.
        * License:     MIT
        * License URI: http://www.opensource.org/licenses/mit-license.php
        */
   
       if ( ! function_exists( 't5_add_page_number' ) )
       {
           function t5_add_page_number( $s )
           {
               global $page;
               $paged = get_query_var( 'paged' ) ? get_query_var( 'paged' ) : 1;
               ! empty ( $page ) && 1 < $page && $paged = $page;
   
               $paged > 1 && $s .= ' | ' . sprintf( __( 'Seite: %s' ), $paged );
   
               return $s;
           }
   
           add_filter( 'wp_title', 't5_add_page_number', 100, 1 );
           add_filter( 'wpseo_metadesc', 't5_add_page_number', 100, 1 );
           add_filter( 'wpseo_opengraph_desc', 't5_add_page_number', 100, 1);
       }
       ```
   
 * `add_filter( 'wp_title', 't5_add_page_number', 100, 1 );` adresses the og:title
   `
   add_filter( 'wpseo_metadesc', 't5_add_page_number', 100, 1 );` adresses the meta
   description `add_filter( 'wpseo_opengraph_desc', 't5_add_page_number', 100, 1);`
   adresses the og:descripton
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Product Feed PRO for WooCommerce by AdTribes – Product Feeds for WooCommerce] Different Suffixes at unit_pricing_measure and unit_pricing_base_measure](https://wordpress.org/support/topic/different-suffixes-at-unit_pricing_measure-and-unit_pricing_base_measure/)
 *  Thread Starter [Noob2000](https://wordpress.org/support/users/noob2000/)
 * (@noob2000)
 * [5 years, 2 months ago](https://wordpress.org/support/topic/different-suffixes-at-unit_pricing_measure-and-unit_pricing_base_measure/#post-14253648)
 * Hi,
 * thank you. Does it mean when I update to ELITE, it will work?
    If so, could you
   please provide information on how to do that, then I will instantly buy ELITE
   license.
 * Thanky you.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Themify - WooCommerce Product Filter] Horizontal filter only on mobiles – responsive](https://wordpress.org/support/topic/horizontal-filter-only-on-mobiles-responsive/)
 *  Thread Starter [Noob2000](https://wordpress.org/support/users/noob2000/)
 * (@noob2000)
 * [5 years, 6 months ago](https://wordpress.org/support/topic/horizontal-filter-only-on-mobiles-responsive/#post-13814272)
 * Thank you. That did the trick.
 * I generated a second filter, added the shortcode as text element in the used 
   Avada section on top and finally edited the CSS for it.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Post & Pages Publishing only when resetting time to 1 month earlier – why?](https://wordpress.org/support/topic/post-pages-publishing-only-when-resetting-time-to-1-month-earlier-why/)
 *  Thread Starter [Noob2000](https://wordpress.org/support/users/noob2000/)
 * (@noob2000)
 * [13 years ago](https://wordpress.org/support/topic/post-pages-publishing-only-when-resetting-time-to-1-month-earlier-why/#post-3789412)
 * Thanks guys!
 * Kind Rgrds
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Post & Pages Publishing only when resetting time to 1 month earlier – why?](https://wordpress.org/support/topic/post-pages-publishing-only-when-resetting-time-to-1-month-earlier-why/)
 *  Thread Starter [Noob2000](https://wordpress.org/support/users/noob2000/)
 * (@noob2000)
 * [13 years ago](https://wordpress.org/support/topic/post-pages-publishing-only-when-resetting-time-to-1-month-earlier-why/#post-3789402)
 * I use “The Agency” theme of themeforest.
 * To specify the problem: This theme has a Projects section in the left menu of
   the WordPress’ backend. And the problem with time shift seems to be only in this
   Projects.
 * Just tried it with regular posts and pages it works perfectly.
 * So I can narrow the search down to this Projects.
 * Is there a special code in some of the PHPs which I should change? Are there 
   special time code snippets or attributes which I could edit?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Post & Pages Publishing only when resetting time to 1 month earlier – why?](https://wordpress.org/support/topic/post-pages-publishing-only-when-resetting-time-to-1-month-earlier-why/)
 *  Thread Starter [Noob2000](https://wordpress.org/support/users/noob2000/)
 * (@noob2000)
 * [13 years ago](https://wordpress.org/support/topic/post-pages-publishing-only-when-resetting-time-to-1-month-earlier-why/#post-3789387)
 * That’s correct!
 * A Post or Page will only be published when I reset the date to one month prior…
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Alfie WP Weather] Alfie WP and qtranslate](https://wordpress.org/support/topic/alfie-wp-and-qtranslate/)
 *  Thread Starter [Noob2000](https://wordpress.org/support/users/noob2000/)
 * (@noob2000)
 * [13 years, 2 months ago](https://wordpress.org/support/topic/alfie-wp-and-qtranslate/#post-3678191)
 * Thank you.
 * I already tried to setup different language .po’s with the porpuse to show Alfie
   WP in the language selected via the flags in the header.
 * It seemed to stuck in only ONE set language.
 * How does the Plugin work? Does it:
 * a) recognize the browser language
    b) recognize the language selected via qtransalte(
   if yes, how can I combine a specific .po with the language selection made with
   qtranslate?) c) recognize by IP of the user
 * ???
 * Thanks for your support! I really appreciate an answer on that.
 * Kind Regards!

Viewing 11 replies - 1 through 11 (of 11 total)