Jan-Philipp
Forum Replies Created
-
Forum: Plugins
In reply to: [WP-PostRatings] GDPR ComplianceHi, yep, it works.
Hi,
I have the same issue when using a hard coded pinterest button. I do not have Jetpack running.
No other script or plugin was running except Woocommerce on an underscore theme.
The error only occurs in Google Chrome. And it only started recently.
Here is a screenshot.
Thank you kwickert for sharing, and big thanks to Jim for finding out.
In case you wonder how to limit to two or more post-types, that is also pretty straight forward.
Instead of the line
$query->set( 'post_type', 'put your custom post type name here' );
you add:
$query->set( 'post_type', array('your_post_type_1', 'your_post_type_2'));
f.e.
$query->set( 'post_type', array('vendor_store', 'product'));
Hi Dave, I wonder, is there an update-safe way?
Forum: Plugins
In reply to: [Geo Mashup] user query with 'Show on map link'Uff. Sorry. Simple as that, a missing “echo”: `<a href=”#mymap” onclick=”frames[‘mymap’].GeoMashup.clickMarker(‘<?php echo $store_id;?>’)”>View on Map</a>
`Forum: Plugins
In reply to: [Geo Mashup] user query with 'Show on map link'Uff. Simple as that: `<a href=”#mymap” onclick=”frames[‘mymap’].GeoMashup.clickMarker(‘<?php<strong> echo </strong>$store_id;?>’)”>View on Map</a>
`Forum: Plugins
In reply to: [Geo Mashup] user query with 'Show on map link'Uff. Simple as that: echo $store_id;?>’)”>View on Map
Forum: Plugins
In reply to: [Geo Mashup] Custom Marker by User ACF Custom FieldI see. So I can just combine it like here:
Forum: Plugins
In reply to: [Geo Mashup] Custom Marker by User ACF Custom FieldDylan. Wow. That was it. I deactivated the google v3. and now it is working! Thank you so much!!!
What would be great: Can I combine the custom.js where I define my marker with the google v3 code so I can have my custom field based markers but a differently styled map?
Forum: Plugins
In reply to: [Geo Mashup] Custom Marker by User ACF Custom FieldPs.: The WPqustions discussion link is this one:
Forum: Plugins
In reply to: [Social] Can't add accounts to the pluginI add a link to a screenshot to show what i mean.
Screenshot of social accounts in profilecheers jp
Forum: Plugins
In reply to: [Social] Can't add accounts to the pluginHi Alex,
after an access token issue i tried to reconnect, but now since i am using wp 4.0 social won’t let me connect any account. i updated to the latest version as you suggest, but it still does not show a ‘add account’ option – neither in the social setting nor on the profile page. it only says: ‘no accounts’.
it’s a bummer, i was using your plugin for a long time and now it fails. do you have any further solutions? the one yowitin was posting does not work either.
any help is helpful.
thank you
jan-philippHi, same here, as descibed by Richmond Media.
I use WP 3.2.1 + Upload Media Button
via “Just Custom Fields” Plugin./I would be wonderful the White Label CMS Plugin but right now it is useless. Hope for fix.
Forum: Plugins
In reply to: one post in multiple categories, Wich single template?If you need to keep the classic permalink structure you can call it like:
<?php the_permalink(); ?>&ref=bla”> with & instead of ? .
Forum: Plugins
In reply to: one post in multiple categories, Wich single template?Ok. The code i posted only works if user comes from a specific url.
Too bad. So i reinvestigated in your code juri003, but it did not work out in the first time.Finally i realized you have to get rid of the classic WP Permalink Structure:
https://example.com/wordpress/?p=123
and change it to pretty permalinks like
https://example.com/wordpress/example/
to let WP pass the “ref”-value, cause otherwise it cuts of at the first “?” and does not pass it.
Thanks again for the cool code. Now it works great.
Forum: Plugins
In reply to: one post in multiple categories, Wich single template?hi kenthoven.
it is long ago you asked. but maybe this helps you or somebody else, cause the problem you descibed freaked me out for two days now. So finally i found another solution:<? $referer = $_SERVER['HTTP_REFERER']; if ( $referer == "https://example.com/wordpress/?cat=10" ) { get_template_part( 'loop', 'single1' ); } else { get_template_part( 'loop', 'single2' ); } ?>
What happens here?
I have one post with multiple categories. Depending on from which category (f.e. Portfolio or Shop) the user visits the post, different loops will be called.Thanks to alchymyth and juri003 for the referer idea.