Jump to content

Simon R

Members
  • Joined

  • Last visited

Posts posted by Simon R

  1. This should run on your MariaDB :

    UPDATE settings SET value = '{\"version\":\"40.0.0\", \"code\":\"4000\"}' WHERE key = 'product_info';

    -- SEPARATOR --

    ALTER TABLE websites MODIFY current_month_sessions_events BIGINT UNSIGNED NOT NULL DEFAULT 0;

    -- SEPARATOR --

    ALTER TABLE websites MODIFY current_month_events_children BIGINT UNSIGNED NOT NULL DEFAULT 0;

    -- SEPARATOR --

    ALTER TABLE websites MODIFY current_month_sessions_replays BIGINT UNSIGNED NOT NULL DEFAULT 0;

    -- SEPARATOR --

    -- ALTER TABLE websites ADD plan_sessions_events_limit_notice TINYINT DEFAULT 0 NULL AFTER current_month_sessions_replays;

    -- SEPARATOR --

    -- ALTER TABLE websites ADD plan_events_children_limit_notice TINYINT DEFAULT 0 NULL AFTER plan_sessions_events_limit_notice;

    -- SEPARATOR --

    -- ALTER TABLE websites ADD plan_sessions_replays_limit_notice TINYINT DEFAULT 0 NULL AFTER plan_events_children_limit_notice;

    -- SEPARATOR --

    -- INSERT INTO settings (key, value) VALUES ('myfatoorah', '{}');

    -- Only insert if 'myfatoorah' doesn't already exist

    INSERT INTO settings (key, value)

    SELECT * FROM (SELECT 'myfatoorah', '{}') AS tmp

    WHERE NOT EXISTS (

    SELECT key FROM settings WHERE key = 'myfatoorah'

    ) LIMIT 1;

    -- SEPARATOR --

    UPDATE settings SET value = '{\"version\":\"41.0.0\", \"code\":\"4100\"}' WHERE key = 'product_info';

    -- SEPARATOR --

  2. On 5/9/2025 at 9:05 AM, Valdis Zelvis said:

    Error when running the database queries: Duplicate column name 'plan_sessions_events_limit_notice'

    GO TO : project folder/update/sql

    Then replace the content of 4100.sql file with the following (it did work for me):

    UPDATE settings SET value = '{\"version\":\"40.0.0\", \"code\":\"4000\"}' WHERE key = 'product_info';

    -- SEPARATOR --

    alter table websites modify current_month_sessions_events bigint unsigned default 0 not null;

    -- SEPARATOR --

    alter table websites modify current_month_events_children bigint unsigned default 0 not null;

    -- SEPARATOR --

    alter table websites modify current_month_sessions_replays bigint unsigned default 0 not null;

    -- SEPARATOR --

    -- alter table websites add plan_sessions_events_limit_notice tinyint default 0 null after current_month_sessions_replays; --

    -- SEPARATOR --

    -- alter table websites add plan_events_children_limit_notice tinyint default 0 null after plan_sessions_events_limit_notice; --

    -- SEPARATOR --

    -- alter table websites add plan_sessions_replays_limit_notice tinyint default 0 null after plan_events_children_limit_notice; --

    -- SEPARATOR --

    -- INSERT INTO settings key, value) VALUES ('myfatoorah', '{}'); --

    -- Only insert if 'myfatoorah' doesn't already exist

    INSERT INTO settings key, value)

    SELECT * FROM (SELECT 'myfatoorah', '{}') AS tmp

    WHERE NOT EXISTS (

    SELECT key FROM settings WHERE key = 'myfatoorah'

    ) LIMIT 1;

    -- SEPARATOR --UPDATE settings SET value = '{\"version\":\"41.0.0\", \"code\":\"4100\"}' WHERE key = 'product_info';

    -- SEPARATOR --

    Screenshot 2025-05-10 at 9.05.00 PM.png

  3. On 5/9/2025 at 6:04 AM, Mahmoud said:

    This file has been updated to v41.0.0

    What's New in this Version:

    • Implemented the new Dynamic OG Images generator plugin service. Available for free to all AltumCode club subscribers.

    • Implemented the new ability to crop images before uploading them. It has been implemented throughout the product where it makes sense.

    • Implemented the ability to fully reset statistics from a website with one click.

    • User last activity date will not get updated anymore if impersonated by an admin.

    • Update on plan buttons to stop showing if registration disabled.

    • Improved the custom css/js page in the admin panel with a code editor for ease of use.

    • Reworked & improved the language update system - now it is almost instant in saving changes.

    • Improved memory usage and performance of the get ip, get device type, get ip location functions.

    • Optimized cron job memory usage in multiple places.

    • Improved admin panel bulk discount code generation performance.

    • Improved internal notifications system to be able to send them in a more efficient way.

    • Improved email broadcasting system to be able to send emails faster and in a more performant and efficient way.

    • Improved PWA plugin: UTM tracking parameters will now abe automatically added when generating the PWA.

    • Improved Push Notifications plugin: Fully reworked the push notification sending algorithm to be able to send push notifications more than 5x faster.

    • Improved Push Notifications plugin: You can now modify the cron processing parameters from the admin panel (advanced users only).

    • Improved Push Notifications plugin: Upgraded to the latest web push notifications library.

    • Improved JS resources by optimizing when they load.

    • Reworked the invoice viewing as an admin from the admin panel.

    • Improved the usage of fontawesome library throughout the product and highly improving performance where not all icons are needed.

    • Upgraded fontawesome library to the latest 6.7.2 version.

    • All admin panel webhooks will now send out the datetime as a parameter as well.

    • Fixed potential issues with Offload plugin system due to newer version releases compatibility.

    • Fixed broadcast filters not working with the language & device filters.

    • Fixed PWA install helper bar not hiding after installation.

    • Fixed potential issues with webhooks being sent out.

    • Fixed issue with missing translations in certain cases where some features are disabled.

    • Fixed issue with multi language usage on Pages & Blog posts where it would generate non-existing links.

    • Fixed issue with CSS files containing unnecessary comments and using more data.

    • Fixed issue with layout shift in the admin panel due to fontawesome icons.

    • Fixed issue with the Razorpay payments on lifetime payments.

    • Fixed issue with clearing generated language system cache after language string updates.

    • Fixed issue with teams plugin where it would show permissions for features that are disabled.

    • Fixed issue with welcome id not being used when social login with required password was used.

    • Fixed issue with iframe usage blocking when writing multiple allowed domains in the admin panel.

    On 5/9/2025 at 9:05 AM, Valdis Zelvis said:

    I have tis error updating database:

    Error when running the database queries: Duplicate column name 'plan_sessions_events_limit_notice'

    Please help

    On 5/9/2025 at 6:04 AM, Mahmoud said:

    This file has been updated to v41.0.0

    What's New in this Version:

    • Implemented the new Dynamic OG Images generator plugin service. Available for free to all AltumCode club subscribers.

    • Implemented the new ability to crop images before uploading them. It has been implemented throughout the product where it makes sense.

    • Implemented the ability to fully reset statistics from a website with one click.

    • User last activity date will not get updated anymore if impersonated by an admin.

    • Update on plan buttons to stop showing if registration disabled.

    • Improved the custom css/js page in the admin panel with a code editor for ease of use.

    • Reworked & improved the language update system - now it is almost instant in saving changes.

    • Improved memory usage and performance of the get ip, get device type, get ip location functions.

    • Optimized cron job memory usage in multiple places.

    • Improved admin panel bulk discount code generation performance.

    • Improved internal notifications system to be able to send them in a more efficient way.

    • Improved email broadcasting system to be able to send emails faster and in a more performant and efficient way.

    • Improved PWA plugin: UTM tracking parameters will now abe automatically added when generating the PWA.

    • Improved Push Notifications plugin: Fully reworked the push notification sending algorithm to be able to send push notifications more than 5x faster.

    • Improved Push Notifications plugin: You can now modify the cron processing parameters from the admin panel (advanced users only).

    • Improved Push Notifications plugin: Upgraded to the latest web push notifications library.

    • Improved JS resources by optimizing when they load.

    • Reworked the invoice viewing as an admin from the admin panel.

    • Improved the usage of fontawesome library throughout the product and highly improving performance where not all icons are needed.

    • Upgraded fontawesome library to the latest 6.7.2 version.

    • All admin panel webhooks will now send out the datetime as a parameter as well.

    • Fixed potential issues with Offload plugin system due to newer version releases compatibility.

    • Fixed broadcast filters not working with the language & device filters.

    • Fixed PWA install helper bar not hiding after installation.

    • Fixed potential issues with webhooks being sent out.

    • Fixed issue with missing translations in certain cases where some features are disabled.

    • Fixed issue with multi language usage on Pages & Blog posts where it would generate non-existing links.

    • Fixed issue with CSS files containing unnecessary comments and using more data.

    • Fixed issue with layout shift in the admin panel due to fontawesome icons.

    • Fixed issue with the Razorpay payments on lifetime payments.

    • Fixed issue with clearing generated language system cache after language string updates.

    • Fixed issue with teams plugin where it would show permissions for features that are disabled.

    • Fixed issue with welcome id not being used when social login with required password was used.

    • Fixed issue with iframe usage blocking when writing multiple allowed domains in the admin panel.

    I have tis error updating database:

    Error when running the database queries: Duplicate column name 'plan_sessions_events_limit_notice'

    Please help @Mahmoud

  4. ·

    Edited by Simon R

    43 minutes ago, zhuanyun said:

    @Simon R Hi, I had the same problem, I replaced it with an old version of the file and it is working now, maybe this method is not perfect, but it solves the problem temporarily, you can try if you need to,or wait for an update!!!!!🤣

    path:/resources/views/default/components/navbar/

     


     

    20240606163334.png

    20240606152953.png

    navbar.blade.php 53.7 kB · 2 downloads

    @zhuanyun It’s working now. Thank you so much! That was a nice walk around .

    By any chance, Do you have an idea why Marketplace and Theme sections are not loading from the admin panel?

  5. 11 minutes ago, 许田七 said:

    image.thumb.png.053ed88797cbe4e5d0e1d993ec4a9f70.png
    I manually installed the template and performed the cracking steps, but when I opened my URL, this error occurred.

    I think you’ve used all files instead of just update folder. You need to restore the whole thing and try again by unzipping the file you’ve downloaded and upload only the new version file that is located under update to yourproject/public then extract and replace all what’s inside /public then you should be good to go to https://yourdomain/update-manual. (This is how I did it)

  6. Posted ·

    Edited by Simon R
    Add thumbnail

    Salient is a next-generation WordPress theme that brings professional design results to anyone, without any coding required.

    Extended Feature List

    Front-end & Back-end Page Builder – Create and manage your website with ease. Salient includes a highly tailored version of the popular WPbakery Page Builder plugin with a fresh new interface design.

    Many Available Demos – Salient provides ultra high quality demos all available to import with one click. Whether you’re a photographer, agency, or anything in between, Salient will take your online presence to a new level.

    World Class, Award Winning Design – Each element & layout available in Salient is meticulously planned and designed to ensure the highest possible level of detail.

    Lifetime Updates, Proven Track Record – Salient has been consistently delivering feature-packed updates for over 9 years. Owning a single license gives you access to free updates for life.

    Shape Dividers – Take your design to the next level with our exclusive shape dividers. Easily control sizing, position, color, and much more.

    Cascading Images – Impress your audience with another Salient exclusive feature. Overlap images with ease by using our cascading images element and even optionally allow them to parallax on scroll!

    Page Transitions – Choose between multiple page transitions available for a beautiful & fluid user experience or turn them off all together if desired.

    4 Icon Packs – Salient has one of the most complete icon sets available on all of ThemeForest. Available families include: Iconminds ($59 value), FontAwesome, Steadysets & Linea.

    Multi Layer Mouse Based Parallax – Wow your users by creating an astonishing parallax scene which is animated via the users mouse movement. Silky smooth performance & works on mobile as well based on tilting the device.

    Masonry Image Galleries – Create beautiful galleries with ease! Enjoy all of the styles available for portfolio items, but with drag & drop ordering & easy bulk uploading.

    Megamenu Built In – No need to rely on plugins. Choose your columns and display your megamenu full width or boxed within the site container.

    Fullscreen Rows – An extraordinarily powerful & exclusive feature that transforms your page builder rows into an exciting story in one click. Animated between your rows with high-performance transitions that also work on mobile.

    Off Canvas Menu – Salient provides a powerful off canvas menu option with 4 different styles that can be used on desktop/mobile displays

    High Performance Animations – Say goodbye to outdated choppy animations. Take note of the frame rate at which the theme animations display at – your users will appreciate the time spent on performance optimization. It’s silky smooth.

    Exclusive Sliders – Get access to multiple sliders custom tailored/created just for Salient. You’ll enjoy exclusive features such as smooth parallax scrolling, image/video backgrounds & awesome functionality such as having your each of your slides alter the header navigation coloring from light to dark.

    Advanced Typography – Currently offering over 800 font families all with precision options available such as line height, letter spacing, font weight, font style, font size & text transform. Live font previews are also available right in the options panel.

    Multiple Blog Styles – Salient offers tons of blog layouts to choose from. Each of the styles seen below can also be displayed full width or with a sidebar.

    Multiple Single Post Layouts – Choose from one of the three single post headers available that’s most appropriate for your website.

    Truly Customizable Portfolio – Salient offers 7 project styles and unlimited layouts for each one. Fine-tune masonry layouts, project grid spacing, coloring, custom content in project grid & much more! Take a look at the styles below and various layouts!

    Infinite Scroll option for Blog & Portfolio – Among the many pagination options, the infinite scroll allows your users to load the next page of items while scrolling down for a seamless browsing experience.

    Graphically Intuitive Shortcode Generator – Even though a powerful visual page builder is included, sometimes shortcodes still come in handy. The shortcode generator included in Salient offers an easy-to-use interface with powerful options for all elements and is usable in both visual & text tabs!

    AJAX Search – Optionally give your users a helpful selection of the top search results for their search terms as they’re typing

    Extensive Theme Options – Salient features an exceptionally organized/designed options panel that provides you with hundreds of options in an intuitive manner. Currently, there are 17 different option panels and subcategories within them.

    Unlimited Color Options – Easily create color schemes for your website with unlimited options. Oh, did we mention color gradients are supported for tons of our elements as well?

    Powerful Lightboxes – fancyBox3 & Magnific are available for you to choose from. Custom elements in Salient such as the Video lightbox, image galleries & sliders are all integrated with them.

    Valid HTML5 – Because the insides are just as important as what the user sees.

    Extensive WooCommerce Support – Multiple product styles & single product layouts available, AJAX shopping cart, Single page product zoom gallery, page builder available on single product pages & more!

    Exclusive HTML5 Particle System – Upload images to create an interactive particle design with ease. Only available in Salient, view a demo here!

    Boxed & Wide layouts – Salient offers a global setting that can change your website from the default wide display to a boxed setup where you can set a background image/color to display behind the boxed container

    Sortable Portfolio – Set up filters for your portfolio instances from categories you create which will sort through the projects without delay.

    Built-in “love” system – Provides a way to track what projects/posts are most loved on your website. Can be optionally used.

    Salient Social Sharing Plugin – Our exclusive plugin allows you to share the current page to various social services in a stylish manner.

    Footer Column Options – Control your footer widget area by selecting the available column (layouts offered range from 2-4 columns)

    SEO Optimized – Care was taken when coding Salient and search engines will appreciate it.

    Translation-Ready – Salient includes the .po/.mo files and is ready to be translated into your desired language.

    And Much More! – Check out the growing list of demos!

     

    Extended License : Yes

    Demo Link:  https://themeforest.net/item/salient-responsive-multipurpose-theme/4363266

    salient.zip