Blog

Change URLs in WPBakery

User change url in wp bakery pages inside Assistant Changing URLs in WPBakery pages is straightforward, but it depends on the specific scenario. Here's a guide for making these changes: — ### **1. Manually Update URLs in WPBakery** 1. **Edit the Page**: – Go to your WordPress admin panel. – Navigate to **Pages** > **All […]

Move folder content SSH

User move folder content to other folder ssh Assistant To move the content of one folder to another using SSH, you can use the `mv` command. Here's the general syntax: mv /source/folder/* /destination/folder/ ### Steps: 1. **Connect to Your Server**: Use SSH to log in to your server. ssh -i /path/to/key.pem user@your-server-ip 2. **Move the […]

Bash Into PHP Container

User version: '3.3' # Specify the version at the top services: nginx: build: ./nginx container_name: solo-dockpress-nginx volumes: – ./website/wordpress:/var/www/html – ./nginx/nginx.conf:/etc/nginx/nginx.conf ports: – '4480:80' networks: – solo-app-network depends_on: – php – dbsolo php: build: ./website env_file: ./website/env/.env.dev volumes: – ./website/wordpress:/var/www/html – ./nginx/php.ini:/usr/local/etc/php/php.ini networks: – solo-app-network dbsolo: image: mysql:8.0 container_name: solo-dockpress-mysql restart: always environment: MYSQL_DATABASE: dockpress […]

New chat

User public function getLangNameAttribute() { $locale = App::getLocale(); // Get the current locale return $locale === 'de' ? $this->dename : $this->enname.''; } above is laravel model Language.php code to alter name col but I also want to pass parameter in above function

Plugin Update Notification Issue

User Yes I mean normally wordpress sent notification for every plugin to update but for this plugin we've no notification , but when you visit given url there are update avialble and its may needs to purchase this plugin upgrade version. Correct above sentence Assistant Here’s the corrected version of your sentence: "Normally, WordPress sends […]

Plugin Upgrade Inquiry

User Actually This plugin had not listed on WordPress admin update section , I think if there is a need of upgradation of this plugin the we need to purchase it from Correct above sentence Assistant Here’s a corrected version of your sentence: "This plugin was not listed in the WordPress admin update section. If […]

WordPress Pagination Issue

User $args = array( 'post_type' => 'resource', 'orderby' => 'date', 'order' => 'DESC', 'post_status'=>'publish', 'posts_per_page' => 8, ); $paged = isset($_POST['page']) ? intval($_POST['page']) : 1; if(isset($_POST['page'])) $args['paged']=$_POST['page']; above is still showing repeting when post per page 8 but when i increased it to 50 it shwos correctly Assistant The issue you are describing typically occurs […]

WordPress Pagination Issue

User $args = array( 'post_type' => 'resource', 'orderby' => 'date', 'order' => 'DESC', 'post_status'=>'publish', 'posts_per_page' => 8, ); $paged = isset($_POST['page']) ? intval($_POST['page']) : 1; if(isset($_POST['page'])) $args['offset']=($paged – 1) * 8; above pagination repeating posts Assistant Repeating posts in pagination are usually caused by a conflict between the `posts_per_page` and `offset` parameters. The `offset` parameter […]