Wordpress Themes - WP Forum at BFA
There will be no more development for Atahualpa (or any other theme), and no support. Also no new registrations. I turned off the donation system. I may turn the forum to read only if it gets abused for spam. Unfortunately I have no time for the forum or the themes. Thanks a lot to the people who helped in all these years, especially Larry and of course: Paul. Take care and stay healthy -- Flynn, Atahualpa developer, Sep 2021

Wordpress Themes - WP Forum at BFA » WordPress Themes » Atahualpa 3 Wordpress theme » Header configuration & styling »

Settings transfer


  #1  
Old Apr 24, 2009, 04:19 AM
fotomag
 
25 posts · Feb 2009
Settings transfer

I like that theme. But in this theme there is one lack. This theme have no possibility for transfering of setting from one blog to another. I address to the founder of this theme. Make an opportunity for convenient transfering of theme settings. I spend much more time for adjusting colors, fonts and many others items as i like the theme must appeared. And this is only one reason which i don't want create new blogs with that theme.
  #2  
Old Apr 24, 2009, 09:41 AM
juggledad's Avatar
juggledad
 
23,765 posts · Mar 2009
OSX 10.11.5 WP 4.x Atahualpa(all) Safari, Firefox, Chrome
Did you try doing a search using the word 'backup'?
  #3  
Old Apr 25, 2009, 09:42 AM
PrairieProg
 
12 posts · Dec 2008
I have a variation of this question: It would be helpful if there was some way to easily transfer settings/changes from the version of the theme I'm using (2.21) to the latest version. Backup doesn't help because it won't be the same version.

It's taken quite a while to "fine tune" everything in the theme and not only do I not want to start from scratch, I'm afraid I'll overlook editing I may have done to theme files.
  #4  
Old Apr 27, 2009, 05:37 PM
Flynn's Avatar
Flynn
 
3,768 posts · Oct 2008
Munich, Germany
There's not automatic way for this I'm afraid but you can upload the new theme version into another directory i.e. /atahualpa332/ vs. /atahualpa/ (or whatever the directory name of your 2.x version is) and then switch back and forth between the 2 themes while working on matching the design of the new version to the old version. Atahualpa 2 also had different theme option names so the options would be kept separate in the Wordpress database
  #5  
Old Apr 27, 2009, 09:50 PM
Steve
 
7 posts · Apr 2009
Los Angeles, CA
Send a message via Skype™ to Steve
Quote:
Originally Posted by Flynn
There's not automatic way for this I'm afraid but you can upload the new theme version into another directory i.e. /atahualpa332/ vs. /atahualpa/ (or whatever the directory name of your 2.x version is) and then switch back and forth between the 2 themes while working on matching the design of the new version to the old version. Atahualpa 2 also had different theme option names so the options would be kept separate in the Wordpress database
Perhaps one could do a screen grab of the settings and print this and then work off of this in lieu of switching back and forth.
  #6  
Old Apr 27, 2009, 09:56 PM
Flynn's Avatar
Flynn
 
3,768 posts · Oct 2008
Munich, Germany
To get a list of all current settings upload the following file as i.e. "export.php" to the theme directory and call it in the browser as yoursite.com/wp-content/themes/atahualpa332/export.php (your path may be ../atahualpa/..)

PHP Code:
<?php
// Find wp-load.php so we can access the database from within our non-standard, external file here
$d 0// search depth;
while (!file_exists(str_repeat('../'$d) . 'wp-load.php')) if (++$d 99) exit;
$wp_load str_repeat('../'$d) . 'wp-load.php';
require_once(
$wp_load);

global 
$wpdb;

// get all option names and options values from the WP Options table where the option name starts with "bfa_ata_"
$atahualpa_options $wpdb->get_results("SELECT option_name, option_value FROM $wpdb->options WHERE option_name REGEXP '^bfa_ata_'");

// output the header
$filename 'atahualpa.options.' str_replace("http://","",get_option('siteurl')) . "." date('Y-m-d') . '.xml';
header('Content-Description: File Transfer');
header("Content-Disposition: attachment; filename=$filename");
header('Content-Type: text/xml; charset=' get_option('blog_charset'), true);

// output the file
echo '<?xml version="1.0" encoding="' get_bloginfo('charset') . '"?' ">\n";

echo 
"<atahualpa_options>\n";
// Loop through the database query that we got earlier
foreach ($atahualpa_options as $atahualpa_option) {
        echo 
"<" $atahualpa_option->option_name ">\n";
        echo 
htmlspecialchars($atahualpa_option->option_value);
        echo 
"\n</" $atahualpa_option->option_name ">\n";
    }
echo
"</atahualpa_options>\n";
?>
This will create a downloadable XML file with only the theme options that were actually changed.

Bookmarks



Similar Threads
Thread Thread Starter Forum Replies Last Post
possible to edit H1-H6 settings? Monkey_Fist New Versions, & Updating 6 Nov 20, 2010 04:57 AM
Keeping Atahualpa settings Thorvald New Versions, & Updating 8 Jul 30, 2009 08:09 PM
How to copy settings to another blog Ilovethistheme Atahualpa 3 Wordpress theme 10 Jun 18, 2009 04:01 PM
Lost settings jim New Versions, & Updating 12 May 28, 2009 08:18 AM
Settings Not Saving Until Logout ieatgravel Atahualpa 3 Wordpress theme 3 Apr 14, 2009 05:25 AM


All times are GMT -6. The time now is 02:36 PM.


Powered by vBulletin® Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.