Plugin Directory

Changeset 3492962


Ignore:
Timestamp:
03/27/2026 07:57:46 PM (25 hours ago)
Author:
fernandot
Message:

probado con la 7

Location:
gozer
Files:
17 added
5 edited

Legend:

Unmodified
Added
Removed
  • gozer/trunk/assets/css/admin.css

    r3450040 r3492962  
    329329}
    330330
    331 .gozer-promo-column .button {
     331.gozer-promo-notice .gozer-promo-column .button {
    332332    align-self: flex-start;
     333    margin-top: auto;
    333334    white-space: normal;
    334335    height: auto;
     336    min-height: auto;
    335337    line-height: 1.4;
    336338    padding: 6px 12px;
     339    text-align: center;
    337340}
    338341
  • gozer/trunk/gozer.php

    r3475867 r3492962  
    44 * Plugin URI:        https://servicios.ayudawp.com
    55 * Description:       Force visitors to log in before accessing your site. Configure exceptions for REST API, feeds, sitemaps, specific pages, IPs, and more through an intuitive settings page.
    6  * Version:           1.0.2
     6 * Version:           1.0.3
    77 * Requires at least: 5.0
    88 * Requires PHP:      7.4
     
    2424 */
    2525
    26 define( 'GOZER_VERSION', '1.0.2' );
     26define( 'GOZER_VERSION', '1.0.3' );
    2727define( 'GOZER_PLUGIN_FILE', __FILE__ );
    2828define( 'GOZER_PLUGIN_DIR', plugin_dir_path( __FILE__ ) );
  • gozer/trunk/includes/admin-settings.php

    r3450040 r3492962  
    484484        <?php
    485485        // Promotional banner with random plugins and services.
    486         $promo_banner = new Gozer_Promo_Banner( 'gozer', 'gozer', 'gozer' );
     486        $promo_banner = new Gozer_Promo_Banner( 'gozer', 'gozer' );
    487487        $promo_banner->render();
    488488        ?>
  • gozer/trunk/includes/class-gozer-promo-banner.php

    r3450040 r3492962  
    2424
    2525    /**
    26      * Text domain for translations.
     26     * CSS class prefix.
    2727     *
    2828     * @var string
    2929     */
    30     private $textdomain;
    31 
    32     /**
    33      * CSS class prefix.
    34      *
    35      * @var string
    36      */
    3730    private $css_prefix;
    3831
     
    4134     *
    4235     * @param string $current_plugin_slug Current plugin slug.
    43      * @param string $textdomain          Text domain for translations.
    4436     * @param string $css_prefix          CSS class prefix.
    4537     */
    46     public function __construct( $current_plugin_slug, $textdomain, $css_prefix ) {
     38    public function __construct( $current_plugin_slug, $css_prefix ) {
    4739        $this->current_plugin_slug = $current_plugin_slug;
    48         $this->textdomain          = $textdomain;
    4940        $this->css_prefix          = $css_prefix;
    5041    }
     
    8273            ),
    8374            'ai-content-signals'                   => array(
    84                 'icon'        => 'dashicons-shield',
     75                'icon'        => 'dashicons-flag',
    8576                'title'       => __( 'Control AI content usage', 'gozer' ),
    8677                'description' => __( 'Cloudflare-endorsed plugin to define how AI systems can use your content: for training, search results, or both.', 'gozer' ),
     
    9182                'title'       => __( 'Speed up your WordPress', 'gozer' ),
    9283                'description' => __( 'Comprehensive performance optimizations: critical CSS, lazy loading, cache rules, and 30+ tweaks with zero configuration.', 'gozer' ),
    93                 'button'      => __( 'Install WPO Tweaks', 'gozer' ),
     84                'button'      => __( 'Install Zero Config Performance', 'gozer' ),
    9485            ),
    9586            'no-gutenberg'                         => array(
     
    170161                'description' => __( 'Add native lightbox functionality to Divi theme images. No jQuery, fast loading, fully customizable.', 'gozer' ),
    171162                'button'      => __( 'Install Divi Lightbox', 'gozer' ),
     163            ),
     164            'scheduled-posts-showcase'             => array(
     165                'icon'        => 'dashicons-clock',
     166                'title'       => __( 'Show visitors what is coming up next', 'gozer' ),
     167                'description' => __( 'Display your scheduled and future posts on the frontend to gain and retain visits.', 'gozer' ),
     168                'button'      => __( 'Install Scheduled Posts Showcase', 'gozer' ),
     169            ),
     170            'periscopio'                           => array(
     171                'icon'        => 'dashicons-rss',
     172                'title'       => __( 'Custom Dashboard News', 'gozer' ),
     173                'description' => __( 'Add your own custom feeds and links to the news and events dashboard widget and replace WordPress default one.', 'gozer' ),
     174                'button'      => __( 'Install Periscopio', 'gozer' ),
    172175            ),
    173176        );
     
    208211                'button'      => __( 'Request a quote', 'gozer' ),
    209212                'url'         => 'https://servicios.ayudawp.com/producto/desarrollo-wordpress/',
     213            ),
     214            'hosting'     => array(
     215                'icon'        => 'dashicons-cloud-saved',
     216                'title'       => __( 'Hosting built for WordPress', 'gozer' ),
     217                'description' => __( 'Google Cloud servers, automatic geo-located daily backups, and 24/7 expert support. Speed, security, and migration tools included.', 'gozer' ),
     218                'button'      => __( 'Learn more', 'gozer' ),
     219                /* translators: SiteGround affiliate URL. Change this URL in translations to use a localized landing page. */
     220                'url'         => __( 'https://stgrnd.co/telladowpbox', 'gozer' ),
    210221            ),
    211222        );
  • gozer/trunk/readme.txt

    r3475867 r3492962  
    33Tags: login, privacy, private, restricted, access
    44Requires at least: 5.0
    5 Tested up to: 6.9
    6 Stable tag: 1.0.2
     5Tested up to: 7.0
     6Stable tag: 1.0.3
    77Requires PHP: 7.4
    88License: GPLv2 or later
     
    105105== Changelog ==
    106106
     107= 1.0.3 =
     108* Fix: Fixed promotional banner button alignment on WordPress 7.0 due to core CSS specificity changes
     109* Tested up to WordPress 7.0
     110
    107111= 1.0.2 =
    108112* Improved: Better name to make it easier to find the plugin
Note: See TracChangeset for help on using the changeset viewer.