Plugin Directory

Changeset 2897033


Ignore:
Timestamp:
04/11/2023 09:08:10 AM (3 years ago)
Author:
wpmagicbox
Message:

Cleared PHP Warnings & Notices

Location:
magicbox
Files:
622 added
4 edited

Legend:

Unmodified
Added
Removed
  • magicbox/trunk/index.php

    r2884240 r2897033  
    44Plugin URI: https://wpmagicbox.com
    55Description: <strong>MagicBox</strong> <code>everything for wordpress</code>. Turn your website into a professional CMS system
    6 Version: 1.2.1
     6Version: 1.2.2
    77Author: MagicBox
    88Text Domain: magicbox
     
    1919$_mb_url_ = plugins_url('', __FILE__);
    2020
    21 $mbAllModulDirs = $mbAllModulDirs ==""?array():$mbAllModulDirs;
     21$mbAllModulDirs = array();
    2222
    2323include_once($_mb_dir_ . 'system/core.php');
  • magicbox/trunk/model/magicbox.php

    r2884240 r2897033  
    22namespace MagicBox;
    33
    4 /* Sanitizing all datas recursively with MagicboxStaff->sanitizeTextFiles method */
     4    /* Sanitizing all datas recursively with MagicboxStaff->sanitizeTextFiles method */
    55/* Escaping all datas recursively with MagicboxStaff->getOptionHtml method */
    66
     
    1111{
    1212
    13     public $version = "1.2.1";
    14     public $categories;
     13    public $version = "1.2.2";
     14    public $categories = array();
    1515    public $oldCategories;
    1616    public $subModul;
     
    2929
    3030        global $magicBox;
    31         $this->oldCategories = $magicBox->categories;
     31        $this->oldCategories = $magicBox->categories == ""? array() : $magicBox->categories;
    3232
    3333        $this->setPluginLang();
     
    130130            }
    131131
    132             if (@count($theValue['subs'])>0){
    133                 $this->toDo($theValue['subs']);
    134             }
    135 
     132            if (is_array($theValue)){
     133                if (is_array($theValue['subs'])){
     134                    if (count($theValue['subs'])>0){
     135                        $this->toDo($theValue['subs']);
     136                    }
     137                }
     138            }
    136139        }
    137140
     
    186189        $modul = str_replace("-", "_", $modul);
    187190        /* $modul = strtolower($modul)=="magicbox"?"MagicBox\MagicBox":$modul; */
    188         $sub   = sanitize_text_field($_GET['sub']);
    189         $sub   = str_replace("-", "_", $sub);
     191        $sub = sanitize_text_field($_GET['sub']);
     192        $sub = str_replace("-", "_", $sub);
    190193
    191194        /* define load page */
     
    238241        $modul = sanitize_text_field($_REQUEST['action']);
    239242        $modul = str_replace("-", "_", $modul);
    240         $modul = strtolower($modul)=="magicbox"?"MagicBox\MagicBox":$modul;
     243        $modul = strtolower($modul) == "magicbox"? "MagicBox\MagicBox" : $modul;
    241244
    242245        $methodName = $_REQUEST['method'] == ""? "index" : magicbox_justTextNumber(esc_attr($_REQUEST['method']), "_");
    243         $canRun = $this->checkCanRunModul("", $modul);
     246        $canRun     = $this->checkCanRunModul("", $modul);
    244247
    245248        if ($canRun == false or method_exists($modul, $methodName) == false){
    246249            echo json_encode(array("result" => "fail", "error" => _("Invalid Process")));
    247             $_REQUEST['is_ajax'] == "true"?die:"";
     250            $_REQUEST['is_ajax'] == "true"? die : "";
     251
    248252            return false;
    249253        }
     
    251255        $theClass = new $modul($this);
    252256        $theClass->$methodName();
    253         $_REQUEST['is_ajax'] == "true"?die:"";
     257        $_REQUEST['is_ajax'] == "true"? die : "";
    254258
    255259    }
     
    346350                            if (file_exists($theSubFile)){
    347351
    348                                 if(!file_exists($theSubFile.'.demo')) {
    349                                 $this->categories[$modulSlug]['subs'][$modulSlugSub]['has'] = 1;
     352                                if (!file_exists($theSubFile . '.demo')){
     353                                    $this->categories[$modulSlug]['subs'][$modulSlugSub]['has'] = 1;
    350354                                } else {
    351355                                    $this->categories[$modulSlug]['subs'][$modulSlugSub]['has'] = 0;
  • magicbox/trunk/model/magicboxStaff.php

    r2884240 r2897033  
    99    {
    1010        /* For Real */
    11         public $version = "1.2.1";
     11        public $version = "1.2.2";
    1212
    1313        protected function gli($code) {
     
    277277
    278278            $isMagicboxPage = false;
     279            $_REQUEST['page'] = $_REQUEST['page']==""?uniqid():$_REQUEST['page'];
     280            $_REQUEST['action'] = $_REQUEST['action']==""?uniqid():$_REQUEST['action'];
    279281
    280282            $thePage   = sanitize_text_field(str_replace("mb-", "mb_", $_REQUEST['page']));
  • magicbox/trunk/readme.txt

    r2884240 r2897033  
    44Requires at least: 4.6
    55Tested up to: 6.1
    6 Stable tag: 1.2.1
     6Stable tag: 1.2.2
    77Requires PHP: 5.6
    88License: GPLv3 or later
     
    1414== Description ==
    1515
    16 = When you first install Wordpress, a web page doesn't have the standard features it should have. Even for the most basic needs, it is necessary to buy many add-ons. MagicBox offers you all the features you need with just one plugin.
    17 
    18 [Wp MagicBox](https://embedpress.com/) everything for wordpress. Turn your website into a professional CMS system
     16When you first install Wordpress, a web page doesn't have the standard features it should have. Even for the most basic needs, it is necessary to buy many add-ons. MagicBox offers you all the features you need with just one plugin.
     17
     18[Wp MagicBox](https://wpmagicbox.com/) everything for wordpress. Turn your website into a professional CMS system
    1919
    2020https://www.youtube.com/watch?v=KK4tLhMD3uE
     
    2424
    2525### SMTP
    26 You can add any mail account information you want so that e-mails sent through your website can be forwarded.
    27 You can easily add the SMTP mail information.
    28 With this feature, messages from the contact forms on your site are forwarded to the e-mail you want.
    29 With this feature, new membership, order, lost password, etc. E-mails are forwarded to your members.
     26- You can add any mail account information you want so that e-mails sent through your website can be forwarded.
     27- You can easily add the SMTP mail information.
     28- With this feature, messages from the contact forms on your site are forwarded to the e-mail you want.
     29- With this feature, new membership, order, lost password, etc. E-mails are forwarded to your members.
    3030
    3131### Contact Buttons
    32 You can add contact and social media buttons to your website.
    33 You can add contact icons such as Facebook, Instagram, phone, mail.
    34 You can show the contact buttons at the top, right, bottom positions of your page.
    35 You can adjust the settings of the buttons as you wish.
    36 You can change the opening type of the dialog.
    37 You can specify whether the communication widget is displayed on or off
    38 You can show the communication widget on any page of your site.
     32- You can add contact and social media buttons to your website.
     33- You can add contact icons such as Facebook, Instagram, phone, mail.
     34- You can show the contact buttons at the top, right, bottom positions of your page.
     35- You can adjust the settings of the buttons as you wish.
     36- You can change the opening type of the dialog.
     37- You can specify whether the communication widget is displayed on or off
     38- You can show the communication widget on any page of your site.
    3939
    4040### Form Builder
    41 You can add as many contact forms as you want without the need for any code for your website.
    42 You can add the forms you add to the page you want with Shortcode.
    43 You can follow the messages sent to the forms from your admin panel.
    44 If you want, incoming forms are automatically forwarded to the e-mail addresses you specify.
     41- You can add as many contact forms as you want without the need for any code for your website.
     42- You can add the forms you add to the page you want with Shortcode.
     43- You can follow the messages sent to the forms from your admin panel.
     44- If you want, incoming forms are automatically forwarded to the e-mail addresses you specify.
    4545
    4646### Bulk Mail
    47 You can send mass mail to your members or to the lists you want from your Admin Panel.
    48 You can easily make mail designs with the editor.
    49 You can send mass e-mails specific to the member types on your site.
    50 You can add your mailing list in bulk manually.
    51 You can review the details of the mass mails you have sent.
    52 You can add special tags such as -name, -username, -mail to your maills.
     47- You can send mass mail to your members or to the lists you want from your Admin Panel.
     48- You can easily make mail designs with the editor.
     49- You can send mass e-mails specific to the member types on your site.
     50- You can add your mailing list in bulk manually.
     51- You can review the details of the mass mails you have sent.
     52- You can add special tags such as -name, -username, -mail to your maills.
    5353
    5454### Lazy Load
    55 You can decrease the page opening time by not automatically loading the content that your visitors do not see.
    56 You can choose which pages the lazy load will be valid on.
    57 You can set which content types the lazy load is valid for.
     55- You can decrease the page opening time by not automatically loading the content that your visitors do not see.
     56- You can choose which pages the lazy load will be valid on.
     57- You can set which content types the lazy load is valid for.
    5858
    5959### Database Repair
    60 You can periodically repair corrupted tables to improve your website performance and database health.
    61 You can view the corrupted tables in your database by severity.
    62 You can repair your tables individually or in bulk.
     60- You can periodically repair corrupted tables to improve your website performance and database health.
     61- You can view the corrupted tables in your database by severity.
     62- You can repair your tables individually or in bulk.
    6363
    6464### Cache Manager
    65 By caching data on your website, you can reduce your site's load time and improve your site's SEO and overall user experience.
    66 You can set how caches are stored on your server.
    67 You can set the duration of caches on your server.
    68 You can set which states will be cached.
    69 You can separate desktop and mobile user caches.
    70 You can set the data that you do not want to be cached.
     65- By caching data on your website, you can reduce your site's load time and improve your site's SEO and overall user experience.
     66- You can set how caches are stored on your server.
     67- You can set the duration of caches on your server.
     68- You can set which states will be cached.
     69- You can separate desktop and mobile user caches.
     70- You can set the data that you do not want to be cached.
    7171
    7272### Preloader
    73 You can upload page load animations to your website.
    74 You can select the preloader image you want from the gallery or add your own
    75 You can specify the display time, size and effect of the image.
    76 You can select the pages you want the Preloader to appear on.
     73- You can upload page load animations to your website.
     74- You can select the preloader image you want from the gallery or add your own
     75- You can specify the display time, size and effect of the image.
     76- You can select the pages you want the Preloader to appear on.
    7777
    7878### Popup
    79 You can add automatic pop-up dialogs to your website.
    80 You can edit the popup content with the editor.
    81 You can edit the appearance of the popup.
    82 You can add javascript tracking tags to your popup.
    83 You can choose how many times the popup will appear and for how long.
    84 You can select the pages you want the popup to open.
     79- You can add automatic pop-up dialogs to your website.
     80- You can edit the popup content with the editor.
     81- You can edit the appearance of the popup.
     82- You can add javascript tracking tags to your popup.
     83- You can choose how many times the popup will appear and for how long.
     84- You can select the pages you want the popup to open.
    8585
    8686### Live Search
    87 By improving the search form of your website, you can show your visitors fast and image results.
    88 You can include images in search results.
    89 You can limit the length of titles and descriptions.
    90 You can specify the number of results to show.
     87- By improving the search form of your website, you can show your visitors fast and image results.
     88- You can include images in search results.
     89- You can limit the length of titles and descriptions.
     90- You can specify the number of results to show.
    9191
    9292### Fancybox
    93 You can display the media on your website in aesthetically pleasing Fancyboxes.
    94 FancyBox's image, video, pdf etc. You can choose which objects to apply to.
    95 You can edit the appearance of the FancyBox.
    96 You can select the pages on which the FancyBoxes will be displayed.
     93- You can display the media on your website in aesthetically pleasing Fancyboxes.
     94- FancyBox's image, video, pdf etc. You can choose which objects to apply to.
     95- You can edit the appearance of the FancyBox.
     96- You can select the pages on which the FancyBoxes will be displayed.
    9797
    9898### Custom Css
    99 You can easily customize the look of your site by adding custom CSS codes without changing your theme files.
    100 You can add custom css to both the WordPress Admin Panel and your website.
    101 You can add custom CSS to mobile, tablet and desktop views.
     99- You can easily customize the look of your site by adding custom CSS codes without changing your theme files.
     100- You can add custom css to both the WordPress Admin Panel and your website.
     101- You can add custom CSS to mobile, tablet and desktop views.
    102102
    103103### Cookie Policy Options
    104 You can add a dialog message that informs your visitors about the use of cookies on your site and asks for confirmation.
    105 You can add a title and description to the cookie notice.
    106 You can customize the appearance of the pop-up notification.
    107 You You can edit the cookie confirmation button design.
     104- You can add a dialog message that informs your visitors about the use of cookies on your site and asks for confirmation.
     105- You can add a title and description to the cookie notice.
     106- You can customize the appearance of the pop-up notification.
     107- You You can edit the cookie confirmation button design.
    108108
    109109### Login Logs
    110 You can view the users who have attempted to login to your website.
    111 You can view the date users attempted to login.
    112 You can view whether the login attempt was successful or not.
    113 You can see which ip and browser the users are trying from.
     110- You can view the users who have attempted to login to your website.
     111- You can view the date users attempted to login.
     112- You can view whether the login attempt was successful or not.
     113- You can see which ip and browser the users are trying from.
    114114
    115115### Php Information
    116 You can view detailed information about the server and software of your WordPress website.
    117 You can view a lot of information about the current status of your php configuration
    118 You can view which extensions are active on your server.
    119 You can view the server and cookie information of your website.
     116- You can view detailed information about the server and software of your WordPress website.
     117- You can view a lot of information about the current status of your php configuration
     118- You can view which extensions are active on your server.
     119- You can view the server and cookie information of your website.
    120120
    121121### Error Logs
    122 You can view the errors that have occurred on your website or server.
    123 You can see the location and date of the error logs.
    124 You can easily clear the records.
     122- You can view the errors that have occurred on your website or server.
     123- You can see the location and date of the error logs.
     124- You can easily clear the records.
    125125
    126126### Post Authentication
    127 You can organize your post and page accesses for your WordPress website depending on user types.
    128 You can only grant logged-in users content access to certain pages and posts.
    129 You can add password restrictions to your content.
     127- You can organize your post and page accesses for your WordPress website depending on user types.
     128- You can only grant logged-in users content access to certain pages and posts.
     129- You can add password restrictions to your content.
    130130
    131131### Disqus Comment
    132 You can add the Disqus comment system to your website and directly interact with your target audience to increase your traffic and audience.
    133 You can adjust the position and size of the comment section.
    134 You can activate the captcha feature while commenting.
    135 You can limit the number of times users can comment.
     132- You can add the Disqus comment system to your website and directly interact with your target audience to increase your traffic and audience.
     133- You can adjust the position and size of the comment section.
     134- You can activate the captcha feature while commenting.
     135- You can limit the number of times users can comment.
    136136
    137137### Comment Manager
    138 You can determine in which sections the Wordpress Comment system will work on your web page, and you can prevent spam posts.
    139 You can prevent commenting on the content you have selected.
    140 You can hide old comments made on the content you selected.
    141 You can activate the captcha feature while commenting.
    142 You can limit the number of times users can comment.
     138- You can determine in which sections the Wordpress Comment system will work on your web page, and you can prevent spam posts.
     139- You can prevent commenting on the content you have selected.
     140- You can hide old comments made on the content you selected.
     141- You can activate the captcha feature while commenting.
     142- You can limit the number of times users can comment.
    143143
    144144### Backup Manager
    145 You can easily back up your website against any security threats, corruptions and updates.
    146 You can back up your entire website, plugins, themes, upload folder or database if you want.
    147 You can see the list of backups you have taken and download the ones you want.
     145- You can easily back up your website against any security threats, corruptions and updates.
     146- You can back up your entire website, plugins, themes, upload folder or database if you want.
     147- You can see the list of backups you have taken and download the ones you want.
    148148
    149149### Image Upload Optimiser
    150 You can resize your images in your own browser and upload them to your site in an optimized way, without the need to resize them one by one.
    151 You save time on your bulk image uploads.
    152 You can set the maximum dimensions and quality of the image you will upload.
    153 By reducing the size of your images before uploading them to your server, you consume minimal space in your hosting space.
     150- You can resize your images in your own browser and upload them to your site in an optimized way, without the need to resize them one by one.
     151- You save time on your bulk image uploads.
     152- You can set the maximum dimensions and quality of the image you will upload.
     153- By reducing the size of your images before uploading them to your server, you consume minimal space in your hosting space.
    154154
    155155### Bulk Image Resize
    156 You can reduce server space usage and speed up your website by resizing images.
    157 You can resize images of content, products etc.in bulk on your site.
    158 You can reduce the quality of images in bulk.
    159 You can optimize JPG, PNG and GIF files.
     156- You can reduce server space usage and speed up your website by resizing images.
     157- You can resize images of content, products etc.in bulk on your site.
     158- You can reduce the quality of images in bulk.
     159- You can optimize JPG, PNG and GIF files.
    160160
    161161### Keyword Suggestion
    162 While adding content such as posts, pages and products to your website, you can use relevant keyword suggestions to get more traffic to your content.
    163 You can add word suggestions directly to your content or use them as a tag.
    164 You can easily find popular keywords related to the topic.
    165 You can target keywords correctly with this feature.
     162- While adding content such as posts, pages and products to your website, you can use relevant keyword suggestions to get more traffic to your content.
     163- You can add word suggestions directly to your content or use them as a tag.
     164- You can easily find popular keywords related to the topic.
     165- You can target keywords correctly with this feature.
    166166
    167167### Url Replacement
    168 If you have changed your website address or want to change the links on your site, you can easily replace the old links with the new URL.
    169 You can change the links of all content types collectively or individually.
    170 You can change an old url on your site with a new url
     168- If you have changed your website address or want to change the links on your site, you can easily replace the old links with the new URL.
     169- You can change the links of all content types collectively or individually.
     170- You can change an old url on your site with a new url
    171171
    172172### Sitemap
    173 You can create dynamic XML sitemaps to help search engines better index your site.
    174 You can create separate sitemaps depending on the content types of your website.
    175 You can include images in sitemaps.
    176 Your sitemap will be automatically updated for each separate content you add, without the need to repeatedly create a sitemap.
    177 You will be listed more easily in search engines such as Google, Bing, Yandex, Yahoo, Ask.
     173- You can create dynamic XML sitemaps to help search engines better index your site.
     174- You can create separate sitemaps depending on the content types of your website.
     175- You can include images in sitemaps.
     176- Your sitemap will be automatically updated for each separate content you add, without the need to repeatedly create a sitemap.
     177- You will be listed more easily in search engines such as Google, Bing, Yandex, Yahoo, Ask.
    178178
    179179### Site Redirects
    180 You can redirect unsecured HTTP traffic to secure HTTPS traffic without touching any code.
    181 When you activate the plugin everything will be configured for you automatically and SSL will be enabled.
    182 The entire site will move to HTTPS using your SSL certificate.
    183 It works with any SSL certificate also you can redirect your website other website
     180- You can redirect unsecured HTTP traffic to secure HTTPS traffic without touching any code.
     181- When you activate the plugin everything will be configured for you automatically and SSL will be enabled.
     182- The entire site will move to HTTPS using your SSL certificate.
     183- It works with any SSL certificate also you can redirect your website other website
    184184
    185185### Seo Image
    186 You can automatically add alt and title tags to the images you add to your website to increase your visibility by search engines.
    187 You can add alt and title tags of images at once.
    188 You can increase the rate of your images appearing in search results.
     186- You can automatically add alt and title tags to the images you add to your website to increase your visibility by search engines.
     187- You can add alt and title tags of images at once.
     188- You can increase the rate of your images appearing in search results.
    189189
    190190### Robot Txt Editor
    191 You can determine how your website content will be read by search engine bots from your admin panel.
    192 You can edit the robot.txt file of your website
    193 You can make your edits without the hassle of FTP clients or permissions.
     191- You can determine how your website content will be read by search engine bots from your admin panel.
     192- You can edit the robot.txt file of your website
     193- You can make your edits without the hassle of FTP clients or permissions.
    194194
    195195### Error Redirects
    196 You can redirect your pages with 404 errors so that your visitors and search engine robots do not have a bad experience.
    197 You can view the list of broken links on your website without using any SEO tools.
    198 You can make 301,302 and 307 redirects to broken links.
     196- You can redirect your pages with 404 errors so that your visitors and search engine robots do not have a bad experience.
     197- You can view the list of broken links on your website without using any SEO tools.
     198- You can make 301,302 and 307 redirects to broken links.
    199199
    200200### Error Page Manager
    201 To prevent your visitors from seeing 404 pages as an error, you can have them automatically redirected to a different related content.
    202 You can prevent your users from having a bad experience.
    203 You can automatically redirect pages that give 404 errors to content with relevant and similar URLs.
     201- To prevent your visitors from seeing 404 pages as an error, you can have them automatically redirected to a different related content.
     202- You can prevent your users from having a bad experience.
     203- You can automatically redirect pages that give 404 errors to content with relevant and similar URLs.
    204204
    205205### Duplicate Manager
    206 You can automatically detect your published content with the same name and same content so that your SEO is not adversely affected.
    207 You can delete duplicate content and redirect to original content.
    208 You can reduce server usage and speed up your website by cleaning up unnecessary content.
     206- You can automatically detect your published content with the same name and same content so that your SEO is not adversely affected.
     207- You can delete duplicate content and redirect to original content.
     208- You can reduce server usage and speed up your website by cleaning up unnecessary content.
    209209
    210210### Custom Redirects
    211 You can create and manage redirects for unopened, deleted or broken links on your site to improve SEO and visitor experience.
    212 You can redirect pages with 301,302 and 307 error codes to different pages you want.
    213 You can view the list of links to which you have redirected.
     211- You can create and manage redirects for unopened, deleted or broken links on your site to improve SEO and visitor experience.
     212- You can redirect pages with 301,302 and 307 error codes to different pages you want.
     213- You can view the list of links to which you have redirected.
    214214
    215215### Visit Limitation
    216 You can prevent unnecessary traffic by limiting the unusual requests of your users on your website.
    217 You can limit your visitors' page visits, searches and comments.
    218 You can exclude any user roles without limitation.
    219 You can exclude query limits for search engines.
    220 You can specify how the rules you specify are stored on your server.
    221 You can direct people who exceed the limits to different addresses.
     216- You can prevent unnecessary traffic by limiting the unusual requests of your users on your website.
     217- You can limit your visitors' page visits, searches and comments.
     218- You can exclude any user roles without limitation.
     219- You can exclude query limits for search engines.
     220- You can specify how the rules you specify are stored on your server.
     221- You can direct people who exceed the limits to different addresses.
    222222
    223223### Login Url
    224 You can change the standard wp-admin Admin Panel url of your WordPress site.
    225 You can manually change the admin panel login address.
    226 You can block malicious login attempts to your admin panel.
     224- You can change the standard wp-admin Admin Panel url of your WordPress site.
     225- You can manually change the admin panel login address.
     226- You can block malicious login attempts to your admin panel.
    227227
    228228### Google Authenticator
    229 You can secure admin login by adding two factor authentication to your website.
    230 You can protect your website from phishing and password theft.
    231 You can block requests that contain malicious code or content.
    232 By blocking all requests from malicious IPs, you can reduce server load while keeping your site secure.
    233 
    234 vCaptcha
    235 You can keep bots and abuse requests away from your website and only allow people to fill in the forms on your site.
    236 You can add Captcha verification to member login, member registration, comment, contact form sections of your website.
    237 You can prevent actions such as unnecessary member registration, malicious login attempts.
     229- You can secure admin login by adding two factor authentication to your website.
     230- You can protect your website from phishing and password theft.
     231- You can block requests that contain malicious code or content.
     232- By blocking all requests from malicious IPs, you can reduce server load while keeping your site secure.
     233
     234### Captcha
     235- You can keep bots and abuse requests away from your website and only allow people to fill in the forms on your site.
     236- You can add Captcha verification to member login, member registration, comment, contact form sections of your website.
     237- You can prevent actions such as unnecessary member registration, malicious login attempts.
    238238
    239239### Tracking Codes
    240 You can track your website's data and increase conversions by adding analytics and marketing tags to the head section of your website.
    241 You can add Google webmaster, Analytics, Search Console, Yandex Metrica, Microsoft Clarity, Facebook Pixel, Google Tag Manager, OneSignal activation codes to your website.
    242 You can view and edit all tracking codes from a single page.
     240- You can track your website's data and increase conversions by adding analytics and marketing tags to the head section of your website.
     241- You can add Google webmaster, Analytics, Search Console, Yandex Metrica, Microsoft Clarity, Facebook Pixel, Google Tag Manager, OneSignal activation codes to your website.
     242- You can view and edit all tracking codes from a single page.
    243243
    244244### User.ini Editor
    245 You can easily edit the User.ini file from the admin panel.
    246 You can make updates without the need for ftp client.
    247 If the User.ini file does not exist, it will be created automatically.
     245- You can easily edit the User.ini file from the admin panel.
     246- You can make updates without the need for ftp client.
     247- If the User.ini file does not exist, it will be created automatically.
    248248
    249249### Htaccess Editor
    250 You can easily edit the htaccess file from the admin panel.
    251 You can make updates without the need for ftp client.
    252 If the Htaccess file does not exist, it will be created automatically.
     250- You can easily edit the htaccess file from the admin panel.
     251- You can make updates without the need for ftp client.
     252- If the Htaccess file does not exist, it will be created automatically.
    253253
    254254### Code Insert Manager
    255 You can add PHP, JS and HTML code to the desired areas of your website.
    256 You can select the pages you want to add code to.
    257 You can set which device views the codes you add will be valid.
    258 You can add codes to Head top, head bottom, body top and body bottom sections.
     255- You can add PHP, JS and HTML code to the desired areas of your website.
     256- You can select the pages you want to add code to.
     257- You can set which device views the codes you add will be valid.
     258- You can add codes to Head top, head bottom, body top and body bottom sections.
    259259
    260260### Gutenberg Editor
    261 This plugin hides all functionality available in the new Gutenberg block editor
    262 You can use old style meta boxes.
    263 You can use the Gutenberg editor whenever you want.
     261- This plugin hides all functionality available in the new Gutenberg block editor
     262- You can use old style meta boxes.
     263- You can use the Gutenberg editor whenever you want.
    264264
    265265### White Label
    266 You can hide the standard WordPress information by customizing the WordPress admin panel for your administrators or clients.
    267 You can hide the content you don't want in the Admin Panel
    268 You can hide Admin Bar, Help Box, Update Messages, WordPress Logo and links, WordPress Version Check in the admin panel.
    269 You can change the WordPress Admin Page title.
    270 You can change the WordPress logo.
    271 You can choose which user roles your edits will apply to.
     266- You can hide the standard WordPress information by customizing the WordPress admin panel for your administrators or clients.
     267- You can hide the content you don't want in the Admin Panel
     268- You can hide Admin Bar, Help Box, Update Messages, WordPress Logo and links, WordPress Version Check in the admin panel.
     269- You can change the WordPress Admin Page title.
     270- You can change the WordPress logo.
     271- You can choose which user roles your edits will apply to.
    272272
    273273### User Switch
    274 You can quickly switch between user and administrator accounts in your WordPress Admin Panel.
    275 You can change user without entering username and password.
    276 You can test your website and admin panel with different user types.
    277 You can choose which admin roles can use this feature.
    278 After you switch to a new user account, you can continue testing your website that you are logged into as that user.
     274- You can quickly switch between user and administrator accounts in your WordPress Admin Panel.
     275- You can change user without entering username and password.
     276- You can test your website and admin panel with different user types.
     277- You can choose which admin roles can use this feature.
     278- After you switch to a new user account, you can continue testing your website that you are logged into as that user.
    279279
    280280### Maintenance Mode
    281 You can add a maintenance page to your website that lets visitors know your site is down for maintenance.
    282 You can design the Maintenance Mode page as you wish with editör.
    283 You can add background image and color.
    284 You can set the background position and repeat.
     281- You can add a maintenance page to your website that lets visitors know your site is down for maintenance.
     282- You can design the Maintenance Mode page as you wish with editör.
     283- You can add background image and color.
     284- You can set the background position and repeat.
    285285
    286286### Clone Manager
    287 You can duplicate any type of content on your WordPress website with one click.
    288 You can set the contents for which the Duplicate feature will be active.
    289 You can make edits to draft contents without breaking the original content.
    290 You can publish the draft content manually whenever you want.
     287- You can duplicate any type of content on your WordPress website with one click.
     288- You can set the contents for which the Duplicate feature will be active.
     289- You can make edits to draft contents without breaking the original content.
     290- You can publish the draft content manually whenever you want.
    291291
    292292### Custom Login
    293 You can customize the WordPress Admin panel login page and create a custom login page for your administrators.
    294 You can change the login page logo.
    295 You can change the login page background.
    296 You can customize the login page form and button
    297 You can hide login page register, hide back url, hide privacy, Remember me features.
     293- You can customize the WordPress Admin panel login page and create a custom login page for your administrators.
     294- You can change the login page logo.
     295- You can change the login page background.
     296- You can customize the login page form and button
     297- You can hide login page register, hide back url, hide privacy, Remember me features.
    298298
    299299### Custom Dashboard
    300 You can customize the WordPress Dashboard depending on admin roles.
    301 You can change admin panel logo and dashboard title
    302 You can hide Dashboard widgets based on admin roles.
    303 You can add Dashboard Messages and show them to the user types you want.
     300- You can customize the WordPress Dashboard depending on admin roles.
     301- You can change admin panel logo and dashboard title
     302- You can hide Dashboard widgets based on admin roles.
     303- You can add Dashboard Messages and show them to the user types you want.
    304304
    305305### Admin Menu Manager
    306 You can organize the admin panel menu depending on admins roles.
    307 You can edit the admin menu as you wish.
    308 You can show different menu items for each admin role.
    309 You can hide the menu items you don't want.
    310 You can change the order of the menu links by dragging and dropping.
    311 You can change the name of the menu item.
    312 You can reset all edits and restore the menu at any time.
     306- You can organize the admin panel menu depending on admins roles.
     307- You can edit the admin menu as you wish.
     308- You can show different menu items for each admin role.
     309- You can hide the menu items you don't want.
     310- You can change the order of the menu links by dragging and dropping.
     311- You can change the name of the menu item.
     312- You can reset all edits and restore the menu at any time.
    313313
    314314### User Permissions
    315 You can set admin roles and access permissions on your website.
    316 You can add different admin roles to your site.
    317 You can set all permissions of user roles on your website.
    318 You can set the permissions of user roles for all pages and plugins that you add to your website later.
    319 When user login the website you can redirect specific admin role automatically another page.
     315- You can set admin roles and access permissions on your website.
     316- You can add different admin roles to your site.
     317- You can set all permissions of user roles on your website.
     318- You can set the permissions of user roles for all pages and plugins that you add to your website later.
     319- When user login the website you can redirect specific admin role automatically another page.
    320320
    321321
     
    347347== Screenshots ==
    348348
    349 1-2.jpg
    350 2-3.jpg
    351 3-4.jpg
    352 4-5.jpg
    353 5-6.jpg
    354 6-7.jpg
    355 7-8.jpg
    356 8-9.jpg
    357 9-10.jpg
    358 10-11.jpg
    359 11-12.jpg
    360 12-13.jpg
    361 13-14.jpg
    362 14-15.jpg
    363 15-16.jpg
    364 16-17.jpg
    365 17-18.jpg
    366 18-19.jpg
    367 19-20.jpg
    368 20-21.jpg
    369 21-22.jpg
    370 22-23.jpg
    371 23-24.jpg
    372 24-25.jpg
    373 25-26.jpg
    374 26-27.jpg
    375 27-28.jpg
    376 28-29.jpg
    377 29-30.jpg
    378 30-31.jpg
    379 31-32.jpg
    380 32-33.jpg
    381 33-34.jpg
    382 34-35.jpg
    383 35-36.jpg
    384 36-37.jpg
    385 37-38.jpg
    386 38-39.jpg
    387 39-40.jpg
    388 40-41.jpg
    389 41-42.jpg
    390 42-43.jpg
    391 43-44.jpg
    392 44-45.jpg
    393 45-46.jpg
    394 46-47.jpg
    395 47-48.jpg
    396 48-49.jpg
    397 49-50.jpg
    398 50-51.jpg
     3491.jpg
     3502.jpg
     3513.jpg
     3524.jpg
     3535.jpg
     3546.jpg
     3557.jpg
     3568.jpg
     3579.jpg
     35810.jpg
     35911.jpg
     36012.jpg
     36113.jpg
     36214.jpg
     36315.jpg
     36416.jpg
     36517.jpg
     36618.jpg
     36719.jpg
     36820.jpg
     36921.jpg
     37022.jpg
     37123.jpg
     37224.jpg
     37325.jpg
     37426.jpg
     37527.jpg
     37628.jpg
     37729.jpg
     37830.jpg
     37931.jpg
     38032.jpg
     38133.jpg
     38234.jpg
     38335.jpg
     38436.jpg
     38537.jpg
     38638.jpg
     38739.jpg
     38840.jpg
     38941.jpg
     39042.jpg
     39143.jpg
     39244.jpg
     39345.jpg
     39446.jpg
     39547.jpg
     39648.jpg
     39749.jpg
     39850.jpg
     39951.jpg
    399400
    400401
     
    405406== Changelog ==
    406407
     408= 1.2.2 =
     409- Cleared PHP Warnings & Notices
     410
    407411= 1.2.1 =
    408 Broken links fixed
    409 Some design upgrades
     412- Broken links fixed
     413- Some design upgrades
    410414
    411415= 1.2.0 =
    412 Changed licencing control and folders name.
    413 Fixed text field bugs.
     416- Changed licencing control and folders name.
     417- Fixed text field bugs.
    414418
    415419
    416420= 1.1.0 =
    417 Added new setting options in features.
    418 Added new features in seo. Now you can change images file name with post title. It is most important on image seo.
    419 Fixed php version bugs specially php 8.0 and 8.1 and we are support php 5.4 now.
     421- Added new setting options in features.
     422- Added new features in seo. Now you can change images file name with post title. It is most important on image seo.
     423- Fixed php version bugs specially php 8.0 and 8.1 and we are support php 5.4 now.
    420424
    421425
    422426= 1.0.3 =
    423 Google Authenticator
    424 Google Captcha
    425 Login Url
    426 Fixed cross problems. Added new feature to custom dashboard. Fixed some css problems it is more comfortable now.
    427 Error Redirects
    428 Custom Redirects
    429 Fixed SSL bug on all wordpress versions.
     427- Google Authenticator
     428- Google Captcha
     429- Login Url
     430- Fixed cross problems. Added new feature to custom dashboard. Fixed some css problems it is more comfortable now.
     431- Error Redirects
     432- Custom Redirects
     433- Fixed SSL bug on all wordpress versions.
    430434
    431435
    432436= 1.0.2 =
    433 WP 4.9 and 5.X version problems solved. This version about hooks.
    434 Custom Dashboard
    435 User Switch
    436 Maintenance Mode
    437 Lazy Load ( Image duplication solved )
    438 Popup
    439 User Permissions
    440 Some wordpress hooks not working on old versions. Added new hooks for alternative.
     437- WP 4.9 and 5.X version problems solved. This version about hooks.
     438- Custom Dashboard
     439- User Switch
     440- Maintenance Mode
     441- Lazy Load ( Image duplication solved )
     442- Popup
     443- User Permissions
     444- Some wordpress hooks not working on old versions. Added new hooks for alternative.
    441445
    442446= 1.0.1 =
    443 Mobile usability improved
    444 Improved Contact Buttons elements
    445 Design adjustments were made
    446 Javascript errors resolved
     447- Mobile usability improved
     448- Improved Contact Buttons elements
     449- Design adjustments were made
     450- Javascript errors resolved
    447451
    448452= 1.0.0 =
Note: See TracChangeset for help on using the changeset viewer.