Viewing 15 replies - 16 through 30 (of 33 total)
  • Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    i would like to post all posts within wp_3_posts with post_type “coupuns” postet in Blog 4

    You want to MOVE them? Or sync them… or …?

    Note: Because this is so messy I’m trying to take it one question at a time ?? Let’s keep it as simple as we can for right now. Makes it easier to understand when we’re not in your head ??

    Thread Starter joloshop

    (@joloshop)

    thanks Mika for hangin in,

    okay this is the situation I have a coupon site with more than 2000 coupons already,
    now i want to display them on a second domain within my multisite setup.

    Therefore i need the second domain to display these coupons.

    I got alll other information i need from the first domain via a modified plugin.
    With this content:

    add_action(‘init’, ‘central_taxonomies’);
    add_action(‘switch_blog’, ‘central_taxonomies’);

    function central_taxonomies () {
    global $wpdb;
    $wpdb->terms = $wpdb->base_prefix.”terms”;
    $wpdb->term_relationships = $wpdb->base_prefix.”term_relationships”;
    $wpdb->postmeta = $wpdb->base_prefix.”postmeta”;
    $wpdb->term_taxonomy = $wpdb->base_prefix.”term_taxonomy”;
    $wpdb->storesmeta = $wpdb->base_prefix.”clpr_storesmeta”;
    }

    However if I add

    add $wpdb->posts = $wpdb->base_prefix.”posts”; to it I am not just getting all coupons from domain1, i am also getting all pages, the menue and all posts.

    within posts you have the post_type and all coupons are having the ID “coupons” and this what I need to get. Is there a way to add something to

    add $wpdb->posts = $wpdb->base_prefix.”posts”;

    to seperate this ID “coupons” from the others?

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    Stop showing code, eh? The point of ‘keep it simple’ is that if we don’t clearly understand what you’re actually trying to do, we give bad advice.

    okay this is the situation I have a coupon site with more than 2000 coupons already,
    now i want to display them on a second domain within my multisite setup.

    Okay. You want to MOVE them or just display them?

    Seriously this matters a LOT. Each site has separate posts tables for a reason. Calling back and forth to get data can be computationally expensive, so we want to limit it if we can.

    Thread Starter joloshop

    (@joloshop)

    thanks i just would like to display them

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    Okay, good. Now you have some options ??

    https://www.ads-software.com/plugins/network-shared-posts/ would be the easiest. No code needed for you.

    Thread Starter joloshop

    (@joloshop)

    thats what i tried first, however thereare over 2000 posts (coupons) i need to share and there is no way to edit them all to include the shortcode. If I understand right thats what i have to do……

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    1) You DO NOT want to list all 2000 on one page. No matter what, you will CRASH your server. And no, you don’t want to duplicate the data, you’ll be hit by SEO penalties.

    2) Looking at this screenshot, you can determine how many posts to show

    https://s.www.ads-software.com/plugins/network-shared-posts/screenshot-2.png?r=781386

    So you would always show SOME coupons, and link back to the coupon site so people see the rest.

    Thread Starter joloshop

    (@joloshop)

    nope no option i need all coupons the content of the pages will be diffrent the the coupons are cust codes and short dicription like “amazon 10% discount” you will find these on hundreds of sites so i dont think there are any penalties, I am already using to domain and using Mini-Mu plugin but with this i am unable to change the permalink structure and pages structure. And by now google is searching both sites and listing bot sites with out panalties….

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    You’re doing this wrong….

    Those other sites? They’re not calling the WHOLE post from another stand-alone website like you are.

    Making a link back to the coupon site would be the best way about it. Dynamically coding to search the coupons for one that matches would be good for that link too.

    Duplicating the whole post?

    Bad. Bad. Bad.

    Thread Starter joloshop

    (@joloshop)

    you dont understand it is NOT a hole post and it will not show on a single page, it will always show up on a store page and these pages are diffrent the coupon is not really a post and i know of coupon site doing the same as i am trying to do the coupon itself is just saved like a post….

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    you dont understand it is NOT a hole post and it will not show on a single page

    Then please explain this better. And STOP getting into the code. Explain this in simple, non-technical, terms. Like you’re trying to tell a visitor to your site ??

    What it SOUNDS like you’re saying is this: “I want to show the post of a coupon from my coupon site onto another.”

    But then you go and say you want to show the coupon itself… so are you trying to say you want to LINK to the coupon from this other site?

    Thread Starter joloshop

    (@joloshop)

    okay thanks for hanging in….

    a post within the wp_post database is labeld as post_type “post”
    a coupon within the wp_post database is labeld as post_type “coupon”
    a page within the wp_post database is labeld as post_type “page”

    Now i want to get all post_type “coupon” from the mainblog (blog1) to show in blog2!
    And not as a link!

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    Now i want to get all post_type “coupon” from the mainblog (blog1) to show in blog2!
    And not as a link!

    There are some options.

    1) You want to MOVE the posts (so that coupons now live in Blog2
    2) You want to DUPLICATE the posts (so the same post is in Blog2 and Blog1)
    3) You want to EMBED the posts (so the post lives in Blog1, but you can display it ad-hoc on blog2)

    I want to tell you something VERY IMPORTANT. The only way to do with that will not cause your SEO to sink like the Titanic is if you either MOVE everything (option 1) or if you embed excerpts of the coupons and have the full content accessed by a link.

    Any other way will end with Google tagging you a spammer.

    Yes, I’m an expert in this field. Yes, I know what I’m talking about. No, the ‘other sites’ you mentioned aren’t doing it the way you’re trying to.

    The reason you can’t do this without tanking your search ratings is because Multisite is multiple SEPARATE sites. Google gets that. Google will see “Aha, Site1 has POSTS. Site2 has THE SAME posts! He’s duplicated content! This is bad! We don’t like this.”

    Google has absolutely no way to know that those posts are ‘coupons’ and thus ‘special.’ Google knows “This is content. It is the exact same on multiple separate sites. Ergo it is spam.”

    Do you understand now why I’m telling you not to do it that way, and why I keep pushing alternatives?

    Thread Starter joloshop

    (@joloshop)

    okay I understand your concerns, just explain this.
    Behind this 3 domain (and there are more) is the same database, you can get access to there database and you are getting the codes and text:

    https://www.gutscheindrache.de/otto/
    https://www.clever-tanken.de/gutscheine/otto/
    https://www.gutscheinrausch.de/otto/

    look at the coupon and order and they all the same, everything else on these sides is diffrent and thats my plan! To publish my coupons on my sites within diffrent content!

    Moderator Ipstenu (Mika Epstein)

    (@ipstenu)

    ?????? Advisor and Activist

    Yeah I would call those three sites spam.

    And so will Google.

    Three separate sites with 100% the same content? 100% spam.

Viewing 15 replies - 16 through 30 (of 33 total)
  • The topic ‘Use first taxonomy in other multisite blogs’ is closed to new replies.