Thread Rating:
  • 1 Vote(s) - 4 Average
  • 1
  • 2
  • 3
  • 4
  • 5
GS Custom Settings [v0.6.2]
I discovered one peculiarity: if you delete a description of the field - the data is not saved! Saving takes place only if there is something to write.
If you select a field type "Section Name," and then save the changes to try to change the type of the field - the data is not saved and the field type is not changed!
It may happen only to me !?
I use machine translation. Forgive my errors.
Reply
(2015-10-10, 19:32:22)gslexx Wrote: I discovered one peculiarity: if you delete a description of the field - the data is not saved! Saving takes place only if there is something to write.
If you select a field type "Section Name," and then save the changes to try to change the type of the field - the data is not saved and the field type is not changed!
It may happen only to me !?

Yes you are right, saving does not take place when nothing is (re-)written. 
However this should not happen with the type field, unless you 1) set a type (eg section title), 2) change the type and save, and 3) reset the type to the first. Then it will not save, and indeed this is a bug. Temp workaround: Reload the page & save then
I'll fix this in next version..
Reply
1) small buttons are not visible, doesn't depend on language settings.
http://prntscr.com/8psuzp

2) How can I call my settings in other plugins? Let's say i want to be able to change number of Special Pages's search results via Custom Settings in Admin panel..
Generally code would be
Code:
<?php get_i18n_search_results(array('tags'=>'news', 'DATE_FORMAT'=>'%d %B, %Y', 'max'=>5, 'i18n'=>0, 'numWords'=>'1p', 'order'=>'created', 'showPaging'=>0, 'HEADER'=>'')); ?>
so, let's say we need to be able to change 'max'=>5 setting via Custom Settings, how can we do it?

3) for some reason, when I create a new "Tab", by default it gives russian name for it translated as "A new tab" (since my website settings are Russian), so, when I change it's name to anything like "Theme settings", and save - it still shows default tab name in help tip, where it shows settings row, like "(% setting: новая_вкладка/my_logo %)". And moreven, when I create a second tab with a new name, it says, that that name of the tab exists (in fact, it still tries to apply default name for the new tab, when it is already used for the first one).. Sorry, I hope it is clear ))

Thank you!
Reply
(2015-10-10, 23:38:04)0zz Wrote: 1) small buttons are not visible, doesn't depend on language settings.
http://prntscr.com/8psuzp

2) How can I call my settings in other plugins? Let's say i want to be able to change number of Special Pages's search results  via Custom Settings in Admin panel..
Generally code would be

Code:
<?php get_i18n_search_results(array('tags'=>'news', 'DATE_FORMAT'=>'%d %B, %Y', 'max'=>5, 'i18n'=>0, 'numWords'=>'1p', 'order'=>'created', 'showPaging'=>0, 'HEADER'=>'')); ?>
so, let's say we need to be able to change 'max'=>5 setting via Custom Settings, how can we do it?

3) for some reason, when I create a new "Tab", by default it gives russian name for it translated as "A new tab" (since my website settings are Russian), so, when I change it's name to anything like "Theme settings", and save - it still shows default tab name in help tip, where it shows settings row, like "(% setting: новая_вкладка/my_logo %)". And moreven, when I create a second tab with a new name, it says, that that name of the tab exists (in fact, it still tries to apply default name for the new tab, when it is already used for the first one).. Sorry, I hope it is clear ))

Thank you!

Thanks for the feedback 0zz,
I'll answer your issues in turn:

1) Yes it's because of the FontAwesome library; I introduced a build step in 6.0 and suspect it corrupted the fonts directory.
Temporary workaround: Download fontawesome, and replace the contents of plugins/custom_settings/fonts/ with the contents from the download fonts/ directory, as well asplugins/custom_settings/css/font-awesome.min.css with the same file from the download.

2) First return the setting and store it in a variable, then put it in the i18n call. For example: 

PHP Code:
<?php 
$date_format 
return_setting('i18ns_date_format');
$max return_setting('i18ns_max_posts');

get_i18n_search_results(array(
  
'tags'=>'news'
  
'DATE_FORMAT'=> $date_format
  
'max'=> $max
  
'i18n'=>0
  
'numWords'=>'1p'
  
'order'=>'created'
  
'showPaging'=>0
  
'HEADER'=>'')); ?>

I'll update my answer with 3) later when I have some time.
Reply
Thank you! It all worked out great!
Concerning the 3rd issue - I've changed it manually so far in "/data/other/custom_settings/data.json" and it works fine so far )
Reply
(2015-10-11, 00:52:57)0zz Wrote: Thank you! It all worked out great!
Concerning the 3rd issue - I've changed it manually so far in "/data/other/custom_settings/data.json" and it works fine so far )

Ok good you've worked it out. It's still a bug that I haven't been able to reproduce in the English version yet, so might be language related...
Reply
Dear Tyblitz, i think the plugin does not correctly uses the path to the files!? Problem: i am using the Prepros to compile files (this program supports automatic refresh of browsers every time you edit a file), Prepros adds to the address port (http://localhost:8005/www...) and for some reason the page "Site" is not displayed! With other plugins there are no problems.

how to get image address?
so does not work:
<img class="uk-border-circle" src="<?php return_setting('home_box','img_1'); ?>" alt="">
Thank you!
I use machine translation. Forgive my errors.
Reply
(2015-10-11, 04:55:56)gslexx Wrote: Dear Tyblitz, i think the plugin does not correctly uses the path to the files!? Problem: i am using the Prepros to compile files (this program supports automatic refresh of browsers every time you edit a file), Prepros adds to the address port (http://localhost:8005/www...) and for some reason the page "Site" is not displayed! With other plugins there are no problems.

how to get image address?
so does not work:
<img class="uk-border-circle" src="<?php return_setting('home_box','img_1'); ?>" alt="">
Thank you!

get_setting to output (echo) the setting, return_setting to pre-process it in PHP. You can also achieve the same by doing echo return_setting. Please refer to the documentation on Outputting settings. The file paths are correct.

As for the Prepros problem, I have no experience with this tool. Can you give me some additionnal info? As in:
- Does the 'Site' tab simply not appear in the menu or does the page stay blank?
- If the page stays blank, could you open Developer Tools (F12) and report any errors (fully)?
- Finally, in the Dev Tools 'Elements' tab, can you check whether the body tag has a class cs_loaded (if not, try to add it manually and see if it works)?
Reply
Thank you for your help!

As for the Prepros problem:
- the page stay blank
Errors: https://yadi.sk/d/VOOMNWUqjeprc
I use machine translation. Forgive my errors.
Reply
(2015-10-11, 16:52:28)gslexx Wrote: Thank you for your help!

As for the Prepros problem:
- the page stay blank
Errors: https://yadi.sk/d/VOOMNWUqjeprc

This is the log you sent me (for referral):

Code:
1. sbfixed not enabled or scrolltofixed not loaded
2. Uncaught Error: Mismatched anonymous define() module: function (){return ne} http://requirejs.org/docs/errors.html#mismatch
3. XMLHttpRequest cannot load http://localhost/.../plugins/custom_settings/customsettings.handler.…4d9012b4a77a9524d675dad27c3276ab5705e5e8&adminDir=admin&id=custom_settings. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:8005' is therefore not allowed access.
4. Uncaught TypeError: Cannot read property 'version' of null
5. XMLHttpRequest cannot load http://localhost/.../plugins/custom_settings/customsettings.handler.…4d9012b4a77a9524d675dad27c3276ab5705e5e8&adminDir=admin&id=custom_settings. No 'Access-Control-Allow-Origin' header is present on the requested resource. Origin 'http://localhost:8005' is therefore not allowed access.
6. Uncaught TypeError: Cannot read property 'data' of null


Aha, I've been able to reproduce your problem. You haven't properly configured GetSimpleCMS. GS Custom Settings uses the global variable $SITEURL which is the value you enter in the 'Settings' tab in the 'Website URL' field:

[Image: QnDWY52.png]

Your browser is navigating to http://localhost:8005 while your GS is configured as http://localhost, so server ports don't match. Change your Website URL to http://localhost:8005/ and it should work.
Reply
on your recommendation website does not work! I wrote, with other plugins I have no problems!

okay, it's not such a big problem! I now go to settings in the administrative panel at the address without a port.
I use machine translation. Forgive my errors.
Reply
(2015-10-11, 21:45:09)gslexx Wrote: on your recommendation website does not work! I wrote, with other plugins I have no problems!

okay, it's not such a big problem! I now go to settings in the administrative panel at the address without a port.

Yes that's because other plugins do not use AJAX. Any plugin with AJAX-features and non-CORS requests will fail, as it is required to load files from the same server, and if the ports don't match it will block the request. What you did was the other solution.  Smile
Reply
@0zz

Quote:3) for some reason, when I create a new "Tab", by default it gives russian name for it translated as "A new tab" (since my website settings are Russian), so, when I change it's name to anything like "Theme settings", and save - it still shows default tab name in help tip, where it shows settings row, like "(% setting: новая_вкладка/my_logo %)". And moreven, when I create a second tab with a new name, it says, that that name of the tab exists (in fact, it still tries to apply default name for the new tab, when it is already used for the first one).. Sorry, I hope it is clear ))

I've tested this and it works as expected. Perhaps you've missed that tabs have both a lookup (identifier) and a name. You can have multiple tabs with the same name, but the lookup needs to be unique. In order to modify the lookup, you should click the right-most icon in the tab list (this toggles tab name <-> tab lookup).

[Image: TsX1wxl.png]
Reply
Thank you, Tyblits, for your time and patience! The plugin is great!
Could you, please, add "Save settings" button on the right side as well (as it is done one the Page editing or Component editing sections, for example).. Just a wish ))
Reply
LiteSpeed server after saving the changed settings, they simply disappear
http://prntscr.com/8tp91b
what could be the cause? this
Code:
PHP disable_functions exec,passthru,proc_close,proc_get_status,proc_nice,proc_terminate,system,pcntl_alarm,pcntl_exec,pcntl_fork,pcntl_getpriority,pcntl_setpriority,pcntl_signal,pcntl_wait,pcntl_waitpid,pcntl_wexitstatus,pcntl_wifexited,pcntl_wifsignaled,pcntl_wifstopped,pcntl_wstopsig,pcntl_wtermsig,dl,posix_access,posix_ctermid,posix_get_last_error,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_kill,posix_mkfifo,posix_mknod,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_strerror,posix_times,posix_ttyname,posix_uname,mb_send_mail
or this
Code:
[15-Oct-2015 16:33:47 UTC] PHP Notice:  Trying to get property of non-object in B:\home\mydomen.com/0\www\plugins\custom_settings\css\dynamic.php on line 42
other plugins work flawlessly
Reply
(2015-10-21, 22:09:59)Oleg06 Wrote: LiteSpeed server after saving the changed settings, they simply disappear
http://prntscr.com/8tp91b
what could be the cause? this

Code:
PHP disable_functions exec,passthru,proc_close,proc_get_status,proc_nice,proc_terminate,system,pcntl_alarm,pcntl_exec,pcntl_fork,pcntl_getpriority,pcntl_setpriority,pcntl_signal,pcntl_wait,pcntl_waitpid,pcntl_wexitstatus,pcntl_wifexited,pcntl_wifsignaled,pcntl_wifstopped,pcntl_wstopsig,pcntl_wtermsig,dl,posix_access,posix_ctermid,posix_get_last_error,posix_getcwd,posix_getegid,posix_geteuid,posix_getgid,posix_getrgid,posix_getgrnam,posix_getgroups,posix_getlogin,posix_getpgid,posix_getpgrp,posix_getpid,posix_getppid,posix_getpwnam,posix_getpwuid,posix_getrlimit,posix_getsid,posix_getuid,posix_kill,posix_mkfifo,posix_mknod,posix_setegid,posix_seteuid,posix_setgid,posix_setpgid,posix_setsid,posix_setuid,posix_strerror,posix_times,posix_ttyname,posix_uname,mb_send_mail
or this

Code:
[15-Oct-2015 16:33:47 UTC] PHP Notice:  Trying to get property of non-object in B:\home\mydomen.com/0\www\plugins\custom_settings\css\dynamic.php on line 42
other plugins work flawlessly

Hey Oleg, 

Thanks, I have no experience with other servers than Apache. I don't think the problem is with #1 (none of these functions are used by GS Custom Settings) or #2 (this should only affect some minor CSS, if any, really).

As you say other plugins work, and the only diff. is that this one loads data with AJAX, so it's got something to do with AJAX. I can only think of this: Folder permissions for this plugin are handled with .htaccess files in the respective directories. Apparently there have been issues with non-root level .htaccess files on Litespeed servers (see here). The only file that is called with AJAX from the page is customsettings.handler.php. Debug: In the browser console when loading GS Custom Settings, is there any error (eg. 403 Forbidden) ? Do you have read permissions for the folder /plugins/custom_settings/ ? (if not, see if this changes anything)

 
Reply
Big Grin 
It looks like the file data.json after the installation template to the server

Code:
{
    "site": [
        {
            "tab": {
                "lookup": "site_settings",
                "label": "Site settings"
            },
            "settings": [
                {
                    "lookup": "new_setting",
                    "label": "Use CDN",
                    "type": "section-title"
                },
                {
                    "lookup": "use-sdn_setting",
                    "label": "Use Query and Bootstrap CDN",
                    "type": "checkbox",
                    "descr": "You can use jQuery and Bootstrap CDN to add Font Awesome, <br>or use the font in your theme.",
                    "access": "normal",
                    "value": true,
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "variations_setting",
                    "label": "Variations (default Full Width)",
                    "type": "section-title"
                },
                {
                    "lookup": "boxed-1_setting",
                    "label": "Boxed 1",
                    "type": "checkbox",
                    "descr": "The maximum width of the block 1140 px.",
                    "access": "normal",
                    "value": false,
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "boxed-2_setting",
                    "label": "Boxed 2",
                    "type": "checkbox",
                    "descr": "The maximum width of the block 1140 px and margins at the top and bottom 30px.",
                    "access": "normal",
                    "value": false,
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "body-bg_setting",
                    "label": "Background body",
                    "type": "select",
                    "descr": "Select background image",
                    "access": "normal",
                    "value": 2,
                    "options": [
                        "dark_wood.png",
                        "dark_mosaic.png",
                        "wild_oliva.png",
                        "diagmonds.png",
                        "dark_leather.png",
                        "triangles.png"
                    ],
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "blocks_setting",
                    "label": "Blocks on the main page",
                    "type": "section-title"
                },
                {
                    "lookup": "use-blocks_setting",
                    "label": "Use blocks on the main page",
                    "type": "checkbox",
                    "descr": "Disable the checkbox if you do not want to use the blocks on the main page, and want to use only the text.",
                    "access": "normal",
                    "value": true,
                    "expanded": true
                },
                {
                    "lookup": "collapse_setting",
                    "label": "Top collapse block",
                    "type": "section-title"
                },
                {
                    "lookup": "collapse-top_setting",
                    "label": "Use the top block",
                    "type": "checkbox",
                    "descr": "If you do not want to use the top block deselect.",
                    "access": "normal",
                    "value": true,
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "open-top_setting",
                    "label": "Collapse the top block",
                    "type": "checkbox",
                    "descr": "Deselect the checkbox if you want the top block was always open.",
                    "access": "normal",
                    "value": true,
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "email_setting",
                    "label": "Your E-mail",
                    "type": "text",
                    "descr": "One mailbox.",
                    "access": "normal",
                    "value": "info@getsimplethemes.ru",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "phone_setting",
                    "label": "Your phone number (Can be left blank)",
                    "type": "text",
                    "descr": "Enter your first phone numbers. This phone number has a link",
                    "access": "normal",
                    "value": "+ X XXX XXX XXXX",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "mobile_setting",
                    "label": "Your mobile phone number (Can be left blank)",
                    "type": "text",
                    "descr": "Enter your mobile phone number. This phone number has a link.",
                    "access": "normal",
                    "value": "+ X XXX XXX XXXX",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "placeholder_setting",
                    "label": "The placeholder for the search",
                    "type": "section-title"
                },
                {
                    "lookup": "placeholder-text_setting",
                    "label": "Placeholder text",
                    "type": "text",
                    "descr": "Your text placeholder for the search form.",
                    "access": "normal",
                    "value": "Type your search...",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "logo_setting",
                    "label": "Logo",
                    "type": "section-title"
                },
                {
                    "lookup": "logo-image_setting",
                    "label": "Logo image (Can be left blank)",
                    "type": "image",
                    "descr": "60x60 px\nPSD file is in the folder images. \n<a href=\"\/admin\/upload.php\">Select here<\/a>",
                    "access": "normal",
                    "value": "http:\/\/00.aa\/data\/uploads\/logo.png",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "logo-text_setting",
                    "label": "Logo text",
                    "type": "text",
                    "descr": "Your text logo may be different from the name of the site. Please no more than two short words.",
                    "access": "normal",
                    "value": "Building Agency",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "slogan_setting",
                    "label": "Slogan",
                    "type": "text",
                    "descr": "The slogan of your company. Please do not very long.",
                    "access": "normal",
                    "value": "Premium GetSimple theme",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "menu_setting",
                    "label": "Menu",
                    "type": "section-title"
                },
                {
                    "lookup": "large-menu_setting",
                    "label": "Use a large menu",
                    "type": "checkbox",
                    "descr": "If you want to use a large menu, select the checkbox",
                    "access": "normal",
                    "value": false,
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "a-menu_setting",
                    "label": "Disable the primary links for the drop down menu",
                    "type": "checkbox",
                    "descr": "You can disable the primary links for the drop down menu.",
                    "access": "normal",
                    "value": false,
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "slider_setting",
                    "label": "The slider on the main page",
                    "type": "section-title"
                },
                {
                    "lookup": "slider-script_setting",
                    "label": "Use the script for responsive images?",
                    "type": "checkbox",
                    "descr": "You need to prepare the image in the following sizes:\n2000x800 px,\n1300x520 px,\n1000x400 px,\n800x320 px,\n500x200 px",
                    "access": "normal",
                    "value": true,
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "bg-slider_setting",
                    "label": "The general background to the slider (Can be left blank)",
                    "type": "image",
                    "descr": "If you want to have the general background for all slides, select the image.\n<a href=\"\/admin\/upload.php\" target=\"_blank\">Select here<\/a>",
                    "access": "normal",
                    "value": "\/data\/uploads\/slider\/background\/slide-bg3.jpg",
                    "langs": [
                        "en"
                    ],
                    "expanded": false
                },
                {
                    "lookup": "quicksand_setting",
                    "label": "Quicksand",
                    "type": "section-title"
                },
                {
                    "lookup": "script-quicksand_setting",
                    "label": "Use script Quicksand 1.2.2?",
                    "type": "checkbox",
                    "descr": "Reorder and filter items with a nice shuffling animation.",
                    "access": "normal",
                    "value": true,
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "names-button_setting",
                    "label": "Names for buttons PREV and NEXT",
                    "type": "section-title"
                },
                {
                    "lookup": "prev_setting",
                    "label": "Names for button PREV",
                    "type": "text",
                    "access": "normal",
                    "value": "Prev"
                },
                {
                    "lookup": "next_setting",
                    "label": "Names for button NEXT",
                    "type": "text",
                    "access": "normal",
                    "value": "Next"
                }
            ]
        },
        {
            "tab": {
                "lookup": "sidebar_setting",
                "label": "Sidebar setting"
            },
            "settings": [
                {
                    "lookup": "side_setting",
                    "label": "Sidebar",
                    "type": "section-title"
                },
                {
                    "lookup": "sidebar-left_setting",
                    "label": "Sidebar on the left",
                    "type": "checkbox",
                    "access": "normal",
                    "value": false,
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "sub-menus_setting",
                    "label": "Block with Sub menu",
                    "type": "checkbox",
                    "descr": "If you do not want to use the block with sub menu deselect.",
                    "access": "normal",
                    "value": true,
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "side-page_setting",
                    "label": "Block with Sidebar page",
                    "type": "checkbox",
                    "descr": "If you do not want to use the block with Sidebar page deselect.",
                    "access": "normal",
                    "value": true,
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "side-titlepages_setting",
                    "label": "Title for the block with Sidebar page",
                    "type": "text",
                    "descr": "Enter the title to the block Sidebar page.",
                    "access": "normal",
                    "value": "Sidebar page",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "side-lastnews_setting",
                    "label": "Block with Last news",
                    "type": "checkbox",
                    "descr": "If you do not want to use the block with Last news deselect.",
                    "access": "normal",
                    "value": true,
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "side-titlenews_setting",
                    "label": "Title for the block with Last news",
                    "type": "text",
                    "descr": "Enter the title to the block Last news.",
                    "access": "normal",
                    "value": "Last news",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "number-lastnews_setting",
                    "label": "The maximum number of last news ",
                    "type": "text",
                    "descr": "Specify the maximum number of last news.",
                    "access": "normal",
                    "value": "3"
                },
                {
                    "lookup": "side-comm_setting",
                    "label": "Block with Recent Comments",
                    "type": "checkbox",
                    "descr": "If you do not want to use the block with Recent Comments deselect.",
                    "access": "normal",
                    "value": true,
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "side-community-discus_setting",
                    "label": "Your community on the Disqus",
                    "type": "text",
                    "descr": "Enter your community on the Disqus",
                    "access": "normal",
                    "value": "tutshub",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "side-titlediscus_setting",
                    "label": "Title for the block with Recent Comments",
                    "type": "text",
                    "descr": "Enter the title to the block Recent Comments.",
                    "access": "normal",
                    "value": "Recent Comments",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "side-tags_setting",
                    "label": "Block with Tags",
                    "type": "checkbox",
                    "descr": "If you don't want to use the block with Tags deselect.",
                    "access": "normal",
                    "value": true,
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "side-titletags_setting",
                    "label": "Title for the block with tags",
                    "type": "text",
                    "descr": "Enter the title to the block Tags.",
                    "access": "normal",
                    "value": "Tags",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "side-twitter_setting",
                    "label": "Block with Last Tweets",
                    "type": "checkbox",
                    "descr": "If you do not want to use the block with Tags deselect.",
                    "access": "normal",
                    "value": true,
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "side-data-widget-id_setting",
                    "label": "data-widget-id",
                    "type": "text",
                    "descr": "Create a Twitter widget, copy and paste the number ID.",
                    "access": "normal",
                    "value": "597089031881682945",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "side-usertwitter_setting",
                    "label": "Your username on Twitter",
                    "type": "text",
                    "descr": "Enter your username on Twitter",
                    "access": "normal",
                    "value": "GetSimple1",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "side-titletwitter_setting",
                    "label": "Title for the block with Last Tweets",
                    "type": "text",
                    "descr": "Enter the title to the block Last Tweets.",
                    "access": "normal",
                    "value": "Last Tweets",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "side-numbertwitter_setting",
                    "label": "Number of tweets",
                    "type": "text",
                    "descr": "Enter the desired number of tweets",
                    "access": "normal",
                    "value": "3",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "side-tabs_setting",
                    "label": "Use Tabs to block Latest News, Recent comments and Tags",
                    "type": "checkbox",
                    "descr": "If you don't want to use Tabs to block Latest News, Recent comments and Tags deselect.",
                    "access": "normal",
                    "value": true,
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "side-tabs-titlenews_setting",
                    "label": "Title for the button Last News",
                    "type": "text",
                    "descr": "Enter the title for the button Last News.",
                    "access": "normal",
                    "value": "News",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "side-tabs-titlecomm_setting",
                    "label": "Title for the button Last Comments",
                    "type": "text",
                    "descr": "Enter the title for the button Last Comments.",
                    "access": "normal",
                    "value": "Comments",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "side-tabs-titletags_setting",
                    "label": "Title for the button Tags",
                    "type": "text",
                    "descr": "Enter the title for the button Tags.",
                    "access": "normal",
                    "value": "Tags",
                    "langs": [
                        "en"
                    ]
                }
            ]
        },
        {
            "tab": {
                "lookup": "footer_settings",
                "label": "Footer settings"
            },
            "settings": [
                {
                    "lookup": "foot_setting",
                    "label": "Footer",
                    "type": "section-title"
                },
                {
                    "lookup": "use-footer_setting",
                    "label": "Use the footer",
                    "type": "checkbox",
                    "descr": "If you do not want to use three blocks in the footer, can disable.",
                    "access": "normal",
                    "value": true,
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "footer-bg_setting",
                    "label": "Footer background",
                    "type": "select",
                    "descr": "Select background image",
                    "access": "normal",
                    "value": 0,
                    "options": [
                        "dark_wood.png",
                        "dark_mosaic.png",
                        "wild_oliva.png",
                        "diagmonds.png",
                        "dark_leather.png",
                        "triangles.png"
                    ],
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "left-footer_setting",
                    "label": "The left block in the footer",
                    "type": "section-title"
                },
                {
                    "lookup": "select-left_setting",
                    "label": "Select the block",
                    "type": "select",
                    "descr": "Select one of the nine blocks.",
                    "access": "normal",
                    "value": 0,
                    "options": [
                        "About Us",
                        "Subscribe Newsletter",
                        "Google map",
                        "Recent Comments",
                        "Latest tweets",
                        "Externak Link",
                        "LiteBox Gallery",
                        "Flickr Gallery",
                        "Ask your question"
                    ],
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "center-footer_setting",
                    "label": "The center block in the footer",
                    "type": "section-title"
                },
                {
                    "lookup": "select-center_setting",
                    "label": "Select the block",
                    "type": "select",
                    "descr": "Select one of the nine blocks.",
                    "access": "normal",
                    "value": 6,
                    "options": [
                        "About Us",
                        "Subscribe Newsletter",
                        "Google map",
                        "Recent Comments",
                        "Latest tweets",
                        "Externak Link",
                        "LiteBox Gallery",
                        "Flickr Gallery",
                        "Ask your question"
                    ],
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "right-footer_setting",
                    "label": "The right block in the footer",
                    "type": "section-title"
                },
                {
                    "lookup": "select-right_setting",
                    "label": "Select the block",
                    "type": "select",
                    "descr": "Select one of the nine blocks.",
                    "access": "normal",
                    "value": 8,
                    "options": [
                        "About Us",
                        "Subscribe Newsletter",
                        "Google map",
                        "Recent Comments",
                        "Latest tweets",
                        "Externak Link",
                        "LiteBox Gallery",
                        "Flickr Gallery",
                        "Ask your question"
                    ],
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "about_setting",
                    "label": "About Us in the footer",
                    "type": "section-title"
                },
                {
                    "lookup": "title-about_setting",
                    "label": "Title block \"About Us\"",
                    "type": "text",
                    "descr": "Enter the title to the block \"About Us\".",
                    "access": "normal",
                    "value": "About Us",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "text-about_setting",
                    "label": "Text block \"About Us\"",
                    "type": "textarea",
                    "descr": "Enter a short text for the block \"About Us\".",
                    "access": "normal",
                    "value": "Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt.",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "address-about_setting",
                    "label": "Address for the block \"About Us\"",
                    "type": "text",
                    "descr": "Enter the address for the block \"About Us\".",
                    "access": "normal",
                    "value": "35 Elizabeth Street, New York, US 33026",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "time-about_setting",
                    "label": "Working time",
                    "type": "text",
                    "descr": "Enter the working time for the block \"About Us\".",
                    "access": "normal",
                    "value": "MON - FRI 8 AM to 6 PM",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "subscribe_setting",
                    "label": "Subscribe Newsletter in the footer",
                    "type": "section-title"
                },
                {
                    "lookup": "title-subscribe_setting",
                    "label": "Title block \"Subscribe Newsletter\"",
                    "type": "text",
                    "descr": "Enter the title to the block \"Subscribe Newsletter\".",
                    "access": "normal",
                    "value": "Subscribe Newsletter",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "text-subscribe_setting",
                    "label": "Text block \"Subscribe Newsletter\"",
                    "type": "textarea",
                    "descr": "Enter a short text for the block \"Subscribe Newsletter\".",
                    "access": "normal",
                    "value": "To subscribe our news and latest update enter your correct email.",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "code-letter_setting",
                    "label": "Code blank for writing",
                    "type": "textarea",
                    "descr": "You can change the code or clear the field.",
                    "access": "normal",
                    "value": "<style type=\"text\/css\">\/* ------------------------------------- \n\t\tGLOBAL \n------------------------------------- *\/\n* { \n\tmargin:0;\n\tpadding:0;\n}\n* { font-family: \"Helvetica Neue\", \"Helvetica\", Helvetica, Arial, sans-serif; }\n\nimg { \n\tmax-width: 100%; \n}\n.collapse {\n\tmargin:0;\n\tpadding:0;\n}\n.collapse h6{\ncolor:#676E73!important;\n}\nbody {\n\t-webkit-font-smoothing:antialiased; \n\t-webkit-text-size-adjust:none; \n\twidth: 100%!important; \n\theight: 100%;\n}\n\n\n\/* ------------------------------------- \n\t\tELEMENTS \n------------------------------------- *\/\na { color: #2BA6CB;}\n\n.btn {\n\ttext-decoration:none;\n\tcolor: #FFF;\n\tbackground-color: #3D61FF;\n\tpadding:10px 16px;\n\tfont-weight:bold;\n\tmargin-right:10px;\n\ttext-align:center;\n\tcursor:pointer;\n\tdisplay: inline-block;\n}\n\np.callout {\n\tpadding:15px;\n\tbackground-color:#ECF8FF;\n\tmargin-bottom: 15px;\n}\n.callout a {\n\tfont-weight:bold;\n\tcolor: #2BA6CB;\n}\n\ntable.social {\n\/* \tpadding:15px; *\/\n\tbackground-color: #444;\n\tcolor:#676E73!important;\n}\ntable.social h5{\n\tcolor:#676E73!important;\n}\ntable.social p{\n\tcolor:#676E73!important;\n}\n.social .soc-btn {\n\tpadding: 3px 7px;\n\tfont-size:12px;\n\tmargin-bottom:10px;\n\ttext-decoration:none;\n\tcolor: #FFF;font-weight:bold;\n\tdisplay:block;\n\ttext-align:center;\n}\na.fb { background-color: #3B5998!important; }\na.tw { background-color: #1daced!important; }\na.gp { background-color: #4D6E92!important; }\na.ms { background-color: #000!important; }\n\n.sidebar .soc-btn { \n\tdisplay:block;\n\twidth:100%;\n}\n\n\/* ------------------------------------- \n\t\tHEADER \n------------------------------------- *\/\ntable.head-wrap { width: 100%;}\n\n.header.container table td.logo { padding: 15px; }\n.header.container table td.label { padding: 15px; padding-left:0px;}\n\n\n\/* ------------------------------------- \n\t\tBODY \n------------------------------------- *\/\ntable.body-wrap { width: 100%;}\n\n\n\/* ------------------------------------- \n\t\tFOOTER \n------------------------------------- *\/\ntable.footer-wrap { width: 100%;\tclear:both!important;\n}\n.footer-wrap .container td.content  p { border-top: 1px solid rgb(215,215,215); padding-top:15px;}\n.footer-wrap .container td.content p {\n\tfont-size:10px;\n\tfont-weight: bold;\n\t\n}\n\n\n\/* ------------------------------------- \n\t\tTYPOGRAPHY \n------------------------------------- *\/\nh1,h2,h3,h4,h5,h6 {\nfont-family: \"HelveticaNeue-Light\", \"Helvetica Neue Light\", \"Helvetica Neue\", Helvetica, Arial, \"Lucida Grande\", sans-serif; line-height: 1.1; margin-bottom:15px; color:#000;\n}\nh1 small, h2 small, h3 small, h4 small, h5 small, h6 small { font-size: 60%; color: #6f6f6f; line-height: 0; text-transform: none; }\n\nh1 { font-weight:200; font-size: 44px;}\nh2 { font-weight:200; font-size: 37px;}\nh3 { font-weight:500; font-size: 27px;}\nh4 { font-weight:500; font-size: 23px;}\nh5 { font-weight:900; font-size: 17px;}\nh6 { font-weight:900; font-size: 14px; text-transform: uppercase; color:#444;}\n\n.collapse { margin:0!important;}\n\np, ul { \n\tmargin-bottom: 10px; \n\tfont-weight: normal; \n\tfont-size:14px; \n\tline-height:1.6;\n}\np.lead { font-size:17px; }\np.last { margin-bottom:0px;}\n\nul li {\n\tmargin-left:5px;\n\tlist-style-position: inside;\n}\n\n\/* ------------------------------------- \n\t\tSIDEBAR \n------------------------------------- *\/\nul.sidebar {\n\tbackground:#ebebeb;\n\tdisplay:block;\n\tlist-style-type: none;\n}\nul.sidebar li { display: block; margin:0;}\nul.sidebar li a {\n\ttext-decoration:none;\n\tcolor: #666;\n\tpadding:10px 16px;\n\/* \tfont-weight:bold; *\/\n\tmargin-right:10px;\n\/* \ttext-align:center; *\/\n\tcursor:pointer;\n\tborder-bottom: 1px solid #777777;\n\tborder-top: 1px solid #FFFFFF;\n\tdisplay:block;\n\tmargin:0;\n}\nul.sidebar li a.last { border-bottom-width:0px;}\nul.sidebar li a h1,ul.sidebar li a h2,ul.sidebar li a h3,ul.sidebar li a h4,ul.sidebar li a h5,ul.sidebar li a h6,ul.sidebar li a p { margin-bottom:0!important;}\n\n\n\n\/* --------------------------------------------------- \n\t\tRESPONSIVENESS\n\t\tNuke it from orbit. It's the only way to be sure. \n------------------------------------------------------ *\/\n\n\/* Set a max-width, and make it display as block so it will automatically stretch to that width, but will also shrink down on a phone or something *\/\n.container {\n\tdisplay:block!important;\n\tmax-width:600px!important;\n\tmargin:0 auto!important; \/* makes it centered *\/\n\tclear:both!important;\n}\n\n\/* This should also be a block element, so that it will fill 100% of the .container *\/\n.content {\n\tpadding:15px;\n\tmax-width:600px;\n\tmargin:0 auto;\n\tdisplay:block; \n}\n\n\/* Let's make sure tables in the content area are 100% wide *\/\n.content table { width: 100%; }\n\n\n\/* Odds and ends *\/\n.column {\n\twidth: 300px;\n\tfloat:left;\n}\n.column tr td { padding: 15px; }\n.column-wrap { \n\tpadding:0!important; \n\tmargin:0 auto; \n\tmax-width:600px!important;\n}\n.column table { width:100%;}\n.social .column {\n\twidth: 280px;\n\tmin-width: 279px;\n\tfloat:left;\n}\n\n\/* Be sure to place a .clear element after each set of columns, just to be safe *\/\n.clear { display: block; clear: both; }\n\n\n\/* ------------------------------------------- \n\t\tPHONE\n\t\tFor clients that support media queries.\n\t\tNothing fancy. \n-------------------------------------------- *\/\n@media only screen and (max-width: 600px) {\n\t\n\ta[class=\"btn\"] { display:block!important; margin-bottom:10px!important; background-image:none!important; margin-right:0!important;}\n\n\tdiv[class=\"column\"] { width: auto!important; float:none!important;}\n\t\n\ttable.social div[class=\"column\"] {\n\t\twidth:auto!important;\n\t}\n\n}\n<\/style>\n<!-- HEADER -->\n<table bgcolor=\"#444\" class=\"head-wrap\">\n\t<tbody>\n\t\t<tr>\n\t\t\t<td>&nbsp;<\/td>\n\t\t\t<td align=\"\" class=\"header container\"><!-- \/content -->\n\t\t\t\t<div class=\"content\">\n\t\t\t\t\t<table bgcolor=\"#444\">\n\t\t\t\t\t\t<tbody>\n\t\t\t\t\t\t\t<tr>\n\t\t\t\t\t\t\t\t<td><img src=\"\/data\/uploads\/logo-big.png\" \/><\/td>\n\t\t\t\t\t\t\t\t<td align=\"right\">\n\t\t\t\t\t\t\t\t\t<h6 class=\"collapse\">Newsletter<\/h6>\n\t\t\t\t\t\t\t\t<\/td>\n\t\t\t\t\t\t\t<\/tr>\n\t\t\t\t\t\t<\/tbody>\n\t\t\t\t\t<\/table>\n\t\t\t\t<\/div>\n\t\t\t\t<!-- \/content --><\/td>\n\t\t\t<td>&nbsp;<\/td>\n\t\t<\/tr>\n\t<\/tbody>\n<\/table>\n<!-- \/HEADER --><!-- BODY -->\n\n<table bgcolor=\"\" class=\"body-wrap\">\n\t<tbody>\n\t\t<tr>\n\t\t\t<td>&nbsp;<\/td>\n\t\t\t<td align=\"\" bgcolor=\"#FFFFFF\" class=\"container\"><!-- content -->\n\t\t\t\t<div class=\"content\">\n\t\t\t\t\t<table>\n\t\t\t\t\t\t<tbody>\n\t\t\t\t\t\t\t<tr>\n\t\t\t\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t<h1>Great Scott!<\/h1>\n\n\t\t\t\t\t\t\t\t\t<p class=\"lead\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et.<\/p>\n\t\t\t\t\t\t\t\t\t<!-- A Real Hero (and a real human being) -->\n\n\t\t\t\t\t\t\t\t\t<p><img src=\"http:\/\/placehold.it\/600x300\" \/><\/p>\n\t\t\t\t\t\t\t\t\t<!-- \/hero -->\n\n\t\t\t\t\t\t\t\t\t<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua. Consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.<\/p>\n\t\t\t\t\t\t\t\t<\/td>\n\t\t\t\t\t\t\t<\/tr>\n\t\t\t\t\t\t<\/tbody>\n\t\t\t\t\t<\/table>\n\t\t\t\t<\/div>\n\t\t\t\t<!-- \/content --><!-- content -->\n\n\t\t\t\t<div class=\"content\">\n\t\t\t\t\t<table bgcolor=\"\">\n\t\t\t\t\t\t<tbody>\n\t\t\t\t\t\t\t<tr>\n\t\t\t\t\t\t\t\t<td class=\"small\" style=\"vertical-align: top; padding-right:10px;\" width=\"20%\"><img src=\"http:\/\/placehold.it\/75x75\" \/><\/td>\n\t\t\t\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t<h4>Title Ipsum <small>This is a note.<\/small><\/h4>\n\n\t\t\t\t\t\t\t\t\t<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.<\/p>\n\t\t\t\t\t\t\t\t\t<a class=\"btn\">Clickity Click &raquo;<\/a><\/td>\n\t\t\t\t\t\t\t<\/tr>\n\t\t\t\t\t\t<\/tbody>\n\t\t\t\t\t<\/table>\n\t\t\t\t<\/div>\n\t\t\t\t<!-- \/content --><!-- content -->\n\n\t\t\t\t<div class=\"content\">\n\t\t\t\t\t<table bgcolor=\"\">\n\t\t\t\t\t\t<tbody>\n\t\t\t\t\t\t\t<tr>\n\t\t\t\t\t\t\t\t<td class=\"small\" style=\"vertical-align: top; padding-right:10px;\" width=\"20%\"><img src=\"http:\/\/placehold.it\/75x75\" \/><\/td>\n\t\t\t\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t<h4>Title Ipsum <small>This is a note.<\/small><\/h4>\n\n\t\t\t\t\t\t\t\t\t<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.<\/p>\n\t\t\t\t\t\t\t\t\t<a class=\"btn\">Clickity Click &raquo;<\/a><\/td>\n\t\t\t\t\t\t\t<\/tr>\n\t\t\t\t\t\t<\/tbody>\n\t\t\t\t\t<\/table>\n\t\t\t\t<\/div>\n\t\t\t\t<!-- \/content --><!-- content -->\n\n\t\t\t\t<div class=\"content\">\n\t\t\t\t\t<table bgcolor=\"\">\n\t\t\t\t\t\t<tbody>\n\t\t\t\t\t\t\t<tr>\n\t\t\t\t\t\t\t\t<td><!-- Callout Panel -->\n\t\t\t\t\t\t\t\t\t<p class=\"callout\">Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt. <a href=\"#\">Do it Now! &raquo;<\/a><\/p>\n\t\t\t\t\t\t\t\t\t<!-- \/callout panel --><\/td>\n\t\t\t\t\t\t\t<\/tr>\n\t\t\t\t\t\t<\/tbody>\n\t\t\t\t\t<\/table>\n\t\t\t\t<\/div>\n\t\t\t\t<!-- \/content --><!-- content -->\n\n\t\t\t\t<div class=\"content\">\n\t\t\t\t\t<table bgcolor=\"\">\n\t\t\t\t\t\t<tbody>\n\t\t\t\t\t\t\t<tr>\n\t\t\t\t\t\t\t\t<td class=\"small\" style=\"vertical-align: top; padding-right:10px;\" width=\"20%\"><img src=\"http:\/\/placehold.it\/75x75\" \/><\/td>\n\t\t\t\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t<h4>Title Ipsum <small>This is a note.<\/small><\/h4>\n\n\t\t\t\t\t\t\t\t\t<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.<\/p>\n\t\t\t\t\t\t\t\t\t<a class=\"btn\">Clickity Click &raquo;<\/a><\/td>\n\t\t\t\t\t\t\t<\/tr>\n\t\t\t\t\t\t<\/tbody>\n\t\t\t\t\t<\/table>\n\t\t\t\t<\/div>\n\t\t\t\t<!-- \/content --><!-- content -->\n\n\t\t\t\t<div class=\"content\">\n\t\t\t\t\t<table bgcolor=\"\">\n\t\t\t\t\t\t<tbody>\n\t\t\t\t\t\t\t<tr>\n\t\t\t\t\t\t\t\t<td class=\"small\" style=\"vertical-align: top; padding-right:10px;\" width=\"20%\"><img src=\"http:\/\/placehold.it\/75x75\" \/><\/td>\n\t\t\t\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t<h4>Title Ipsum <small>This is a note.<\/small><\/h4>\n\n\t\t\t\t\t\t\t\t\t<p>Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.<\/p>\n\t\t\t\t\t\t\t\t\t<a class=\"btn\">Clickity Click &raquo;<\/a><\/td>\n\t\t\t\t\t\t\t<\/tr>\n\t\t\t\t\t\t<\/tbody>\n\t\t\t\t\t<\/table>\n\t\t\t\t<\/div>\n\t\t\t\t<!-- \/content --><!-- content -->\n\n\t\t\t\t<div class=\"content\">\n\t\t\t\t\t<table bgcolor=\"#444\">\n\t\t\t\t\t\t<tbody>\n\t\t\t\t\t\t\t<tr>\n\t\t\t\t\t\t\t\t<td><!-- social & contact -->\n\t\t\t\t\t\t\t\t\t<table bgcolor=\"#444\" class=\"social\" width=\"100%\">\n\t\t\t\t\t\t\t\t\t\t<tbody>\n\t\t\t\t\t\t\t\t\t\t\t<tr>\n\t\t\t\t\t\t\t\t\t\t\t\t<td><!--- column 1 -->\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"column\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<table align=\"left\" bgcolor=\"#444\" cellpadding=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tbody>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h5>Connect with Us:<\/h5>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p><a class=\"soc-btn fb\" href=\"https:\/\/www.facebook.com\/osvetlov\">Facebook<\/a> <a class=\"soc-btn tw\" href=\"https:\/\/twitter.com\/GetSimple1\">Twitter<\/a> <a class=\"soc-btn gp\" href=\"http:\/\/vk.com\/id11855200\">VKontakte<\/a><\/p>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/tr>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/tbody>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/table>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<!-- \/column 1 --><\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t\t<!--- column 2 -->\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"column\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<table align=\"left\" bgcolor=\"#444\" cellpadding=\"\">\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tbody>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<tr>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<h5>Contact Info:<\/h5>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<p>Website: <strong><a href=\"http:\/\/getsimplethemes.ru\/\">GetSimple Themes<\/a><\/strong><br \/>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\tEmail: <strong><a href=\"emailto:olsv64@yandex.ru\">olsv64@yandex.ru<\/a><\/strong><\/p>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/td>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/tr>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/tbody>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<\/table>\n\t\t\t\t\t\t\t\t\t\t\t\t\t\t<!-- \/column 2 --><\/div>\n\n\t\t\t\t\t\t\t\t\t\t\t\t\t<div class=\"clear\">&nbsp;<\/div>\n\t\t\t\t\t\t\t\t\t\t\t\t<\/td>\n\t\t\t\t\t\t\t\t\t\t\t<\/tr>\n\t\t\t\t\t\t\t\t\t\t<\/tbody>\n\t\t\t\t\t\t\t\t\t<\/table>\n\t\t\t\t\t\t\t\t\t<!-- \/social & contact --><\/td>\n\t\t\t\t\t\t\t<\/tr>\n\t\t\t\t\t\t<\/tbody>\n\t\t\t\t\t<\/table>\n\t\t\t\t<\/div>\n\t\t\t\t<!-- \/content --><\/td>\n\t\t\t<td>&nbsp;<\/td>\n\t\t<\/tr>\n\t<\/tbody>\n<\/table>\n<!-- \/BODY --><!-- FOOTER -->\n\n<table class=\"footer-wrap\">\n\t<tbody>\n\t\t<tr>\n\t\t\t<td>&nbsp;<\/td>\n\t\t\t<td class=\"container\"><!-- content -->\n\t\t\t\t<div class=\"content\">\n\t\t\t\t\t<table>\n\t\t\t\t\t\t<tbody>\n\t\t\t\t\t\t\t<tr>\n\t\t\t\t\t\t\t\t<td align=\"center\">\n\t\t\t\t\t\t\t\t\t<p><a href=\"#\">Terms<\/a> | <a href=\"#\">Privacy<\/a> | <a href=\"#\"><unsubscribe>Unsubscribe<\/unsubscribe><\/a><\/p>\n\t\t\t\t\t\t\t\t<\/td>\n\t\t\t\t\t\t\t<\/tr>\n\t\t\t\t\t\t<\/tbody>\n\t\t\t\t\t<\/table>\n\t\t\t\t<\/div>\n\t\t\t\t<!-- \/content --><\/td>\n\t\t\t<td>&nbsp;<\/td>\n\t\t<\/tr>\n\t<\/tbody>\n<\/table>\n<!-- \/FOOTER -->",
                    "expanded": false
                },
                {
                    "lookup": "no-spam_setting",
                    "label": "No spam",
                    "type": "text",
                    "descr": "Enter a short text for the block \"No spam\".",
                    "access": "normal",
                    "value": "* No spam guaranteed",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "follow-us_setting",
                    "label": "Title block \"Follow us\"",
                    "type": "text",
                    "descr": "Enter the title to the block \"Follow us\".",
                    "access": "normal",
                    "value": "Follow us",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "twitter_setting",
                    "label": "Twitter in the footer",
                    "type": "section-title"
                },
                {
                    "lookup": "title-twitter_setting",
                    "label": "Title block \"Twitter\"",
                    "type": "text",
                    "descr": "Enter the title to the block \"Twitter\".",
                    "access": "normal",
                    "value": "Latest tweets",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "username-twitter_setting",
                    "label": "Your username on Twitter",
                    "type": "text",
                    "descr": "Enter your username on Twitter",
                    "access": "normal",
                    "value": "GetSimple1",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "data-widget-id_setting",
                    "label": "data-widget-id",
                    "type": "text",
                    "descr": "Create a Twitter widget, copy and paste the number ID.",
                    "access": "normal",
                    "value": "597089031881682945",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "flickr_setting",
                    "label": "Flickr in the footer",
                    "type": "section-title"
                },
                {
                    "lookup": "title-flickr_setting",
                    "label": "Title block \"Flickr\"",
                    "type": "text",
                    "descr": "Enter the title to the block \"Flickr\".",
                    "access": "normal",
                    "value": "Flickr Gallery",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "flickr-album_setting",
                    "label": "The ID of your album",
                    "type": "text",
                    "descr": "Enter the ID of your album on Flickr",
                    "access": "normal",
                    "value": "34858669@N00",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "discus_setting",
                    "label": "Disqus in the footer",
                    "type": "section-title"
                },
                {
                    "lookup": "title-discus_setting",
                    "label": "Title block \"Disqus\"",
                    "type": "text",
                    "descr": "Enter the title to the block \"Disqus\".",
                    "access": "normal",
                    "value": "Recent Comments",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "community-discus_setting",
                    "label": "Your community on the Disqus",
                    "type": "text",
                    "descr": "Enter your community on the Disqus",
                    "access": "normal",
                    "value": "tutshub",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "google-map_setting",
                    "label": "Google Map in the footer",
                    "type": "section-title"
                },
                {
                    "lookup": "title-google-map_setting",
                    "label": "Title block \"Google Map\"",
                    "type": "text",
                    "descr": "Enter the title to the block \"Google Map\".",
                    "access": "normal",
                    "value": "Google Map",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "iframe-google_setting",
                    "label": "Iframe Google Map",
                    "type": "textarea",
                    "descr": "Copy and paste the code to Google Map",
                    "access": "normal",
                    "value": "<iframe src=\"https:\/\/www.google.com\/maps\/embed?pb=!1m18!1m12!1m3!1d9929.109092262548!2d-0.11595436993157184!3d51.52647404944895!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x0000000000000000%3A0x2bba1529dc7f2ef2!2zSG9saWRheSBJbm4gTG9uZG9uIEtpbmdzIENyb3NzL0Jsb29tc2J1cnkg0J7RgtC10LvRjA!5e0!3m2!1sru!2sru!4v1431350802670\" width=\"600\" height=\"450\" style=\"border:0\"><\/iframe>",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "external_setting",
                    "label": "Externak Link in the footer",
                    "type": "section-title"
                },
                {
                    "lookup": "title-external_setting",
                    "label": "Title block \"Externak Link\"",
                    "type": "text",
                    "descr": "Enter the title to the block \"Externak Link\".",
                    "access": "normal",
                    "value": "Externak Link",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "gallery_setting",
                    "label": "Gallery in the footer",
                    "type": "section-title"
                },
                {
                    "lookup": "title-gallery_setting",
                    "label": "Title block \"Gallery\"",
                    "type": "text",
                    "descr": "Enter the title to the block \"Gallery\".",
                    "access": "normal",
                    "value": "LiteBox Gallery",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "contact_setting",
                    "label": "Contact form in the footer",
                    "type": "section-title"
                },
                {
                    "lookup": "title-contact_setting",
                    "label": "Title block \"Contact form\"",
                    "type": "text",
                    "descr": "Enter the title to the block \"Contact form\".",
                    "access": "normal",
                    "value": "Ask your question",
                    "langs": [
                        "en"
                    ]
                }
            ]
        },
        {
            "tab": {
                "lookup": "news_seting",
                "label": "News seting"
            },
            "settings": [
                {
                    "lookup": "sl-news_setting",
                    "label": "Size and placement blocks excerpt news",
                    "type": "section-title"
                },
                {
                    "lookup": "news-image_setting",
                    "label": "Size of the image block",
                    "type": "radio",
                    "descr": "Select the size and placement of blocks excerpt news",
                    "access": "normal",
                    "value": 0,
                    "options": [
                        "The image left of the text",
                        "The image above the text"
                    ],
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "news-date_setting",
                    "label": "Use date news",
                    "type": "checkbox",
                    "descr": "If you do not want to use the date in the news deselect.",
                    "access": "normal",
                    "value": true,
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "date-format_setting",
                    "label": "Date format",
                    "type": "text",
                    "descr": "Change the date format of your choice.\n",
                    "access": "normal",
                    "value": "%B %d, %Y"
                },
                {
                    "lookup": "number-news_setting",
                    "label": "The maximum number of news on the same page",
                    "type": "text",
                    "descr": "Specify the maximum number of news on the same page.",
                    "access": "normal",
                    "value": "8"
                },
                {
                    "lookup": "news-tags_setting",
                    "label": "Use tags news",
                    "type": "checkbox",
                    "descr": "If you do not want to use the tags in the news deselect.",
                    "access": "normal",
                    "value": true,
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "news-ncomm_setting",
                    "label": "Use number of comments",
                    "type": "checkbox",
                    "descr": "If you do not want to use a number of comments in the news deselect.",
                    "access": "normal",
                    "value": true,
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "news-butt_setting",
                    "label": "Use button in the news",
                    "type": "checkbox",
                    "descr": "If you don't want to use the button in the news deselect.",
                    "access": "normal",
                    "value": true,
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "news-butttext_setting",
                    "label": "Button text",
                    "type": "text",
                    "descr": "Enter the button text",
                    "access": "normal",
                    "value": "Read more",
                    "langs": [
                        "en"
                    ]
                }
            ]
        },
        {
            "tab": {
                "lookup": "ajax_form",
                "label": "Ajax Form"
            },
            "settings": [
                {
                    "lookup": "error_setting",
                    "label": "Error Messages",
                    "type": "section-title"
                },
                {
                    "lookup": "err-number_setting",
                    "label": "Error in the number of characters",
                    "type": "textarea",
                    "descr": "Enter the text of the error in the number of characters",
                    "access": "normal",
                    "value": "Your message must be at least 30 characters",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "err-first-name_setting",
                    "label": "Error in the First Name",
                    "type": "textarea",
                    "descr": "Enter the text of the error in the First Name field",
                    "access": "normal",
                    "value": "The First Name field is required",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "err-last-name_setting",
                    "label": "Error in the Last Name",
                    "type": "textarea",
                    "descr": "Enter the text of the error in the Last Name field",
                    "access": "normal",
                    "value": "Last Name field is required",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "err-city_setting",
                    "label": "Error in the City",
                    "type": "textarea",
                    "descr": "Enter the text of the error in the City field",
                    "access": "normal",
                    "value": "Please enter your city",
                    "langs": [
                        "en"
                    ]
                },
                {
                    "lookup": "err-email_setting",
                    "label": "Error in the Email",
                    "type": "textarea",
                    "descr": "Enter the text of the error in the Email field",
                    "access": "normal",
                    "value": "Please enter a valid email address",
                    "langs": [
                        "en"
                    ]
                }
            ]
        },
        {
            "tab": {
                "lookup": "share_setting",
                "label": "Social Share"
            },
            "settings": [
                {
                    "lookup": "sharethis-service_setting",
                    "label": "ShareThis",
                    "type": "section-title"
                },
                {
                    "lookup": "sharethis-use_setting",
                    "label": "Use ShareThis",
                    "type": "checkbox",
                    "descr": "No counter. <a href=\"http:\/\/www.sharethis.com\/\" target=\"_blank\" rel=\"nofollow\">ShareThis<\/a>",
                    "access": "normal",
                    "value": true,
                    "expanded": true
                },
                {
                    "lookup": "left-right_setting",
                    "label": "Placing the left or right",
                    "type": "select",
                    "access": "normal",
                    "value": 0,
                    "expanded": false,
                    "options": [
                        "left",
                        "right"
                    ]
                },
                {
                    "lookup": "sharethis_setting",
                    "label": "Vertical or Gorizontal",
                    "type": "radio",
                    "descr": "Choose the method of placement.",
                    "access": "normal",
                    "value": 1,
                    "expanded": false,
                    "options": [
                        "vertical (fixed)",
                        "horizontal (under text)"
                    ]
                },
                {
                    "lookup": "goodshare-service_setting",
                    "label": "Goodshare",
                    "type": "section-title"
                },
                {
                    "lookup": "goodshare-use_setting",
                    "label": "Use Goodshare",
                    "type": "checkbox",
                    "descr": "There are counters. <a href=\"http:\/\/goodshare.ru\/\" target=\"_blank\" rel=\"nofollow\">Good Share<\/a>",
                    "access": "normal",
                    "value": true,
                    "expanded": false
                },
                {
                    "lookup": "share-small",
                    "label": "Small button",
                    "type": "checkbox",
                    "descr": "You can reduce the size of the buttons.",
                    "access": "normal",
                    "value": false,
                    "expanded": false
                },
                {
                    "lookup": "share-name",
                    "label": "Show the name of a social network",
                    "type": "checkbox",
                    "descr": "You can hide or show the name of a social network.",
                    "access": "normal",
                    "value": false,
                    "expanded": false
                },
                {
                    "lookup": "share-counter",
                    "label": "Use counter",
                    "type": "checkbox",
                    "descr": "You can hide or show the counter.",
                    "access": "normal",
                    "value": true,
                    "expanded": false
                },
                {
                    "lookup": "shareeasy_setting",
                    "label": "ShareEasy",
                    "type": "section-title"
                },
                {
                    "lookup": "shareeasy-use_setting",
                    "label": "Use ShareEasy",
                    "type": "checkbox",
                    "descr": "No scripts. No counter.",
                    "access": "normal",
                    "value": true,
                    "expanded": false
                },
                {
                    "lookup": "share-small-ease",
                    "label": "Small button",
                    "type": "checkbox",
                    "descr": "You can reduce the size of the buttons.",
                    "access": "normal",
                    "value": false,
                    "expanded": false
                },
                {
                    "lookup": "share-name-ease",
                    "label": "Show the name of a social network",
                    "type": "checkbox",
                    "descr": "You can hide or show the name of a social network.",
                    "access": "normal",
                    "value": true,
                    "expanded": false
                },
                {
                    "lookup": "share-email-ease",
                    "label": "Use the email button",
                    "type": "checkbox",
                    "access": "normal",
                    "value": true,
                    "expanded": false
                },
                {
                    "lookup": "network_setting",
                    "label": "Select social network",
                    "type": "section-title"
                },
                {
                    "lookup": "facebook",
                    "label": "Facebook",
                    "type": "checkbox",
                    "access": "normal",
                    "value": true,
                    "expanded": false
                },
                {
                    "lookup": "twitter",
                    "label": "Twitter",
                    "type": "checkbox",
                    "access": "normal",
                    "value": true,
                    "expanded": false
                },
                {
                    "lookup": "google-plus",
                    "label": "Google-plus",
                    "type": "checkbox",
                    "access": "normal",
                    "value": true,
                    "expanded": false
                },
                {
                    "lookup": "vk",
                    "label": "Vkontakte",
                    "type": "checkbox",
                    "access": "normal",
                    "value": true,
                    "expanded": false
                },
                {
                    "lookup": "odnoklassniki",
                    "label": "Odnoklassniki",
                    "type": "checkbox",
                    "access": "normal",
                    "value": true,
                    "expanded": false
                },
                {
                    "lookup": "pinterest",
                    "label": "Pinterest",
                    "type": "checkbox",
                    "access": "normal",
                    "value": true,
                    "expanded": false
                },
                {
                    "lookup": "linkedin",
                    "label": "Linkedin",
                    "type": "checkbox",
                    "access": "normal",
                    "value": true,
                    "expanded": false
                },
                {
                    "lookup": "tumblr",
                    "label": "Tumblr",
                    "type": "checkbox",
                    "access": "normal",
                    "value": true,
                    "expanded": false
                },
                {
                    "lookup": "additional_setting",
                    "label": "Additional settings",
                    "type": "section-title"
                },
                {
                    "lookup": "share-twitter",
                    "label": "Your Twitter username (without @)",
                    "type": "text",
                    "access": "normal",
                    "value": "GetSimple1"
                },
                {
                    "lookup": "share-img",
                    "label": "Image for social networks",
                    "type": "image",
                    "descr": "If nothing is selected, it will display the logo.",
                    "access": "normal",
                    "value": "http:\/\/00.aa\/data\/uploads\/news\/news4.jpg",
                    "expanded": false
                }
            ]
        }
    ]
}

It looks like the file data.json after changing settings
Code:
{
    "site": [
        
    ]
}
I panicked, all my sites on a server Litespeed.
After a long correspondence with the provider received a reply:
Quote:Повторили попытку, в отладочной информации проблем с выполнение запроса не обнаружили.
Вам необходимо продолжить переписку с разработчиком.
Reply
I found a problem with the file .json https://www.litespeedtech.com/support/fo...json.6217/
Reply
Aha ok, not a very helpful reply. So this is really weird. Your settings data have been totally wiped out...
If you re-upload data.json to the data/other/custom_settings directory, and re-hit save:
  • Do you get an error message or a confirmation message ('Your settings have been updated') or nothing?
  • Are your settings wiped out over and over again? 
  • If you extract the patch I attached to this post to the plugins folder, does it work?
  • Does this happen with previous versions of GS Custom Settings (eg v0.6)?
If none of the above works, I'm afraid I can't localize the problem

UPDATE: Apparently the AJAX content type application/x-www-urlencoded (jQuery default) doesn't work on LiteSpeed servers. In the next release this will be set to application/json.


Attached Files
.zip   custom_settings_0.6.1_patch_save_err.zip (Size: 37.36 KB / Downloads: 4)
Reply
It's not possible to change settings in css files right (I mean via this plugin)? So if required it is advisable to include css in template.php, or included via (example):

Code:
<style><?php include('style.inc.php'); ?></style>

?
Reply
(2015-10-22, 09:15:37)Tyblitz Wrote: Aha ok, not a very helpful reply. So this is really weird. Your settings data have been totally wiped out...
If you re-upload data.json to the data/other/custom_settings directory, and re-hit save:

  • Do you get an error message or a confirmation message ('Your settings have been updated') or nothing?
  • Are your settings wiped out over and over again? 
  • If you extract the patch I attached to this post to the plugins folder, does it work?
  • Does this happen with previous versions of GS Custom Settings (eg v0.6)?
If none of the above works, I'm afraid I can't localize the problem

UPDATE: Apparently the AJAX content type application/x-www-urlencoded (jQuery default) doesn't work on LiteSpeed servers. In the next release this will be set to application/json.

your patch does not work, no errors occur
Reply
(2015-10-26, 22:51:49)datiswous Wrote: It's not possible to change settings in css files right (I mean via this plugin)? So if required it is advisable to include css in template.php, or included via (example):


Code:
<style><?php include('style.inc.php'); ?></style>

?

Hey, 
I've thought of this before and tested some things with GS, but it's a little more complicated. See this Tuts+ Tutorial for serving PHP files as text/css.
How would you best handle such scenario? See this best practice SO answer.
Reply
I noticed one oddity
http://youtu.be/BHZwRkOKZls?hd=1
when you deactivate/activate your plugin for some reason stop working plugin I18N Special Pages or I18N Custom Fields

before Deactivate/Activate your plugin file plugins.xml looks like
Code:
<?xml version="1.0" encoding="UTF-8"?>
<channel><item><plugin><![CDATA[admin-header-footer.php]]></plugin><enabled><![CDATA[false]]></enabled></item><item><plugin><![CDATA[anonymous_data.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[custom-admin-css.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[custom_settings.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[debug.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[dynpages.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[DY_Breadcrumbs.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[external_comments.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[feedback.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[gs_massmail.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[i18n_base.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[i18n_customfields.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[i18n_gallery.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[i18n_navigation.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[i18n_search.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[i18n_search_news.php]]></plugin><enabled><![CDATA[false]]></enabled></item><item><plugin><![CDATA[i18n_specialpages.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[InnovationPlugin.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[metaRobots.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[metaRobots_sitemap.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[news_manager.php]]></plugin><enabled><![CDATA[false]]></enabled></item><item><plugin><![CDATA[news_manager_addons.php]]></plugin><enabled><![CDATA[false]]></enabled></item><item><plugin><![CDATA[news_manager_auto_open.php]]></plugin><enabled><![CDATA[false]]></enabled></item><item><plugin><![CDATA[p01-contact_gs.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[pageoptions_auto_open.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[pagify.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[paragraph_remover.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[srbs.php]]></plugin><enabled><![CDATA[false]]></enabled></item></channel>

after enable/disable your plugin file plugins.xml looks like

Code:
<?xml version="1.0" encoding="UTF-8"?>
<channel><item><plugin><![CDATA[custom_settings.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[news_manager.php]]></plugin><enabled><![CDATA[false]]></enabled></item><item><plugin><![CDATA[news_manager_auto_open.php]]></plugin><enabled><![CDATA[false]]></enabled></item><item><plugin><![CDATA[news_manager_addons.php]]></plugin><enabled><![CDATA[false]]></enabled></item><item><plugin><![CDATA[feedback.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[dynpages.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[srbs.php]]></plugin><enabled><![CDATA[false]]></enabled></item><item><plugin><![CDATA[DY_Breadcrumbs.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[i18n_base.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[debug.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[pageoptions_auto_open.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[gs_massmail.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[anonymous_data.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[metaRobots.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[i18n_search_news.php]]></plugin><enabled><![CDATA[false]]></enabled></item><item><plugin><![CDATA[admin-header-footer.php]]></plugin><enabled><![CDATA[false]]></enabled></item><item><plugin><![CDATA[i18n_specialpages.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[i18n_navigation.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[i18n_search.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[custom-admin-css.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[i18n_customfields.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[p01-contact_gs.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[InnovationPlugin.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[paragraph_remover.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[pagify.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[i18n_gallery.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[external_comments.php]]></plugin><enabled><![CDATA[true]]></enabled></item><item><plugin><![CDATA[metaRobots_sitemap.php]]></plugin><enabled><![CDATA[true]]></enabled></item></channel>

my server
http://prntscr.com/8vpz8o

on the local server that does not happen
http://prntscr.com/8vq2kr
Reply
Hey 0leg,
I just compared your 2 plugins.xml files; they are identical. Except for the order, the same plugins are enabled... 
I know with Windows folders/files are automatically listed in alphabetical order with PHP; apparently that's different w/ Linux?
Anyhow that shouldn't cause a problem? 

It is also impossible that GS Custom Settings changed the plugins.xml file. I would track the oddity down to admin/inc/plugin_functions.php, in the function create_pluginsxml in the foreach loop (lines 193-224).

I don't see how other plugins could stop working because of this one. It never modifies their info or files, doesn't use their hooks...

Have you used a multilingual text/ textarea setting on the video's page? I know this is still half-bugged; although it shouldn't cause trouble like this.
Reply
I checked on two different servers hosting with Apache, the problem is everywhere.
as if stops working checkbox plugin I18N Custom Fields.

I can just hide the link to deactivate the plugin Smile
Reply




Users browsing this thread: 1 Guest(s)