Earlier this year I built a client a large website for their organization. After that site was finished and live on the web (not on our development server anymore) they wanted the company I work for to build them another site for their online magazine. I built the site using a copy of the old development site we used for their org since they wanted everything to look the same. Now that the site is finished, we need to integrate …
I have been looking for guidance on this for a while. This question is the nearest I have come to my case: How can I make updates to a site, on a development copy, but then move updates back without overriding live site's evolving database? I don't have enough points to contribute to that, so I have started this question. I am not an expert, but I am quite experienced with WordPress. The basic question is really simple. I have …
Good evening everyone... I apologize in advance for my bad English, for any complaints go to google translate :). I need to merge posts with the same title and I don't know how to do it. The situation is as follows... I have many posts with exactly the same title as other posts but different content. Joining them manually would take a lot of time; I would like to be able to do it automatically via a php snippet. I …
When I load the website (https://notes.goncaloperes.com) on mobile one can see the two menus/navigations that exist However, when it loads, the two navs are merged and the second menu buttons can only be found in the burguer menu on top. The primary nav looks fine on the burguer menu, however, it would be helpful to see the second menu as it appears before the merge (as seen in the first image). How do I do that? Information that may help: …
I have two WordPress sites with the same database structure (same prefix, number of tables etc.). Now I want to merge all data from the two databases to make it one single database. How can I do that?
I am trying to order the posts in a category by showing the posts with images first and then posts without images last. I have managed to do that by running two queries and now I want to merge the two queries together. I have the following: <?php $loop = new WP_Query( array('meta_key' => '_thumbnail_id', 'cat' => 1 ) ); $loop2 = new WP_Query( array('meta_key' => '', 'cat' => 1 ) ); $mergedloops = array_merge($loop, $loop2); while($mergedloops->have_posts()): $mergedloops->the_post(); ?> But …
I am trying to customise my Wordpress homepage. I decided to get fullscreen image theme (TwoFold by Fuel Themes). As I am preparing photography portfolio website, graphic content is very important to me. However, I'd like to add some text below the image slider, ideally it would be a whole page below the current homepage slider. Please see the demo theme: TwoFold Theme And what I would like to add (simple mockup): Methods I found here seem not to work …
I've tried to be as descriptive in the title as possible, and I know this question has been asked in before in various forms but I could not find good answer to it and it's are to imagine that no one has solved this issue. It's simple, once a WP site is live, if it is not a static one then it keeps updating it's database by having new posts added, new woocommerce orders, new user accounts etc' If I …
I have two arrays that filter and order posts by two different custom keys. What I need to do is to merge the arrays and order them by their own custom keys, to not have first a list of the array a and then the list of the array b. I tried different approaches, but no one really gave me any good result. The last one I tried was usort, but it is basically useless (the two merged arrays were …
codecanyon-577696-security-ninja codecanyon-2927931-core-scanner-addon-for-security-ninja codecanyon-3686330-scheduled-scanner-addon-for-security-ninja codecanyon-8531381-events-logger-addon-for-security-ninja All of four are in zip file so i want to create a single zip so whenever i install this single zip all four plugin will installed. Now I want to merge them how to do this job
I am trying to combine two WordPress queries but it's not working as well as pagination. I want to display today's all posts sorted by comment count and after that I want to display all posts (excluding today's post) sorted by comment count. I believe these are the two queries to accomplish task separately. But how can I combines these so that new query lists today's posts first sorted by comment count and then rest of the posts sorted by …
When using update feature (in wp-admin/update-core.php page), it seems to me that wp just replaces all the resources, and the changes that have been made in the working resources just get erased instead of getting merged. At least I've been experiencing with wp-login.php that gets replaced per every update and thus I have to reflect back the change from scratch (it's not easy often because the code in the file changes upon update). Am I right? If so, are there …
What methods exist to merge at least two WordPress sites together that already live under one Multi Site instance? E.g. Sites wp_2 and wp_3 become either wp_4 or are merged together under wp_2. I suspect that this is no different than migrating or converting an existing WordPress site/data into a Network that has been outline here and includes all the caveats of 301 mappings, updating site options, and existing URLS found inside options and content.
I need to be able to merge two or more posts. What is the exact query (or queries) to make this happen? The scenario is multiple recommendations that need to be merged into one. I have already sorted out comments merging and meta merging. Let's say a user recommends Bill Gates, another one Gates Bill and another one makes a typo and adds Bil Gates. I need to merge these three posts and choose the destination one. UPDATE: What I …
I have two Wordpress installations that I would like to make into one installation, but still keep the posts (and their meta-data) separated. Both installations currently share the same database. I would like to be able to loop through both blogs, but each on their own page. I have extracted both databases using the built in export function in WordPress and am now sitting with two .xml files containing the posts from each database. Now I would like to import …
I need to merge two existing multistes. Each has some 40 blogs, and the end result should be that all 80 blogs reside on one WP installation. Any advice or experience on how to best apporach this task, other man doing it manually, by creating each new blog and user on the end server, and then use export/import for each individual new blog? I'd like it to be an efficient method, that could also be applied on much larger multisites. …
Does anyone know of a plugin that is capable of merging the post meta from one post into another? I'm working on re-releasing the Driftwood contact manager theme and I'm trying to find a way to solve the duplicate contact issue. Obviously this question could impact far more people than just myself. :)
I have two Wordpress installs, both with a little bit of different data. I have a LIVE site and I have a DEV Site. I need to merge the content of these two databases together to make a STAGING Site. I need to merge the new Posts/Pages/Comments/Categories from DEV to a LIVE database backup, and then make that database become STAGING. What is best, easiest, and least time consuming way of tackling this? NOTE: XML Importer will not work for …