#!/bin/bash echo "=== Copying Templates to Theme Directory ===" ssh roodev@146.190.76.204 << 'ENDSSH' cd /home/974670.cloudwaysapps.com/uberrxmprk/public_html # Create hvac-community-events directory in theme echo "Creating template override directory in theme..." mkdir -p wp-content/themes/astra/hvac-community-events # Copy all page templates echo "Copying page templates..." cp wp-content/plugins/hvac-community-events/templates/page-*.php wp-content/themes/astra/hvac-community-events/ # List copied files echo -e "\nCopied templates:" ls -la wp-content/themes/astra/hvac-community-events/page-*.php # Clear cache wp cache flush wp breeze purge --cache=all echo -e "\n✅ Templates copied to theme directory" ENDSSH