Noob2000
Forum Replies Created
-
Problem resolved. Had a duplicted attribute due to translation of attribute with Germanized which caused the issue.
Forum: Plugins
In reply to: [Germanized for WooCommerce] Delivery times issues on variations since updateThank you for the quick response and the patch! Awesome!
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 3 years, 4 months ago by Noob2000.
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
In reply to: [Yoast SEO] Pagination with %%page%% in description also for ogThank 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: https://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:descriptonHi,
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.
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.
Thanks guys!
Kind Rgrds
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?
That’s correct!
A Post or Page will only be published when I reset the date to one month prior…
Forum: Plugins
In reply to: [Alfie WP Weather] Alfie WP and qtranslateThank 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!