shaolin46
Forum Replies Created
-
Forum: Plugins
In reply to: [eShop] eshop double quantityYes…to change the text of the link…I’ve looked the cart-function.php , checkout.php , eshop-add-cart.php but I haven’t found anything to modify…
Thanks again for the answer
Forum: Plugins
In reply to: [eShop] eshop double quantityI’ve found the problem looking the source code of the page…the ajx function is called twice, due to the double call to wp_head() in my theme…. so sorry for the annoying question and thanks for the answer!!
Last request : which file I’ve to edit to modify the “continue shopping” / “proceed to checkout” link in the cart page??
Thanks!!
Forum: Plugins
In reply to: [Plugin: Yoast Breadcrumbs] Display blog category instead of blogI solved my problem…
Just modified the yoast-breadcrumbs.php file in:==================
line 211:
if ($on_front == “page”) {
$homelink = [ the same old stuff ]
$bloglink = $homelink;
}
else { [old stuff ] }……..
==================
line 222:
} elseif ( $on_front == “page” && is_home() ) {
$output = $homelink.’ ‘.$opt[‘sep’].’ ‘;
==================In the control panel, in the admin page, I’ve checked “Show category in post breadcrumbs” to display all the path to the post in the blog
So I hope others with my same problem can solve!
Bye!Forum: Plugins
In reply to: [Plugin: Yoast Breadcrumbs] Display blog category instead of blogI have the same problem….but in my created theme it shows a link to a post instead of the BLOG link! absurd…
But maybe it’s my fault…something to change in my theme…but what??This is the problem :
https://neonewbie.altervista.org/misto/bread_probl.png
in the space between / / the plugin add a link to a post…why?the address of this page is blogurl>category>shop
So..is it possible only to show: home / shop in breadcrumbs?
Thanks to all for the support
Hi barinagabriel,
I’ve just submitted my email to test the pro beta version ??Thank you for the replay, and again my compliments for the plugin!!
Vince.
..so I reply to myself after trying different things….
The answer is to use the update_user_meta() function…Simply after the
$new_user = wp_insert_user(…);I’ve added
update_user_meta( $new_user, ‘field_1’ , ‘value_1’ );
update_user_meta( $new_user, ‘field_2’ , ‘value_2’ );etc….
an It works!Hope this can help someone ??
Forum: Plugins
In reply to: Profile builder extensionHi…I’ve the same problem and I’m using this plugin
https://www.cozmoslabs.com/2011/04/12/wordpress-profile-builder-a-front-end-user-registration-login-and-edit-profile-plugin/comment-page-1/But I’m having some issue in registering the new field I’ve added…so I’m trying to have some help too!