Month: August 2025

Concrete CMS Overview

User what is concrete cms and why we use it Assistant **Concrete CMS** (formerly called **Concrete5**) is an **open-source content management system (CMS)** designed to build and manage websites easily without needing deep technical knowledge. It is written in **PHP** and uses a **MySQL database**. — ### **What Concrete CMS is:** – A **user-friendly CMS** […]

Get element id fix

User get id of class nav-link $('.nav-link').click(function() { if($(this).id == 'participants-tab') $("#survey-tab").addClass('active-prev'); }); Assistant You're currently using `$(this).id`, which is incorrect. To get the `id` of a jQuery element, you should use `$(this).attr('id')`. Here’s the corrected version of your code: $('.nav-link').click(function() { if ($(this).attr('id') === 'participants-tab') { $("#survey-tab").addClass('active-prev'); } }); Let me know if you […]

Concrete CMS Plugin Development

User There is a need of create package/plugin that will able to install on any concrete cms I will need 30 to 35 hours to create a pakage Correct above sentence to more sutiable for client Assistant Here’s a more professional and client-friendly version of your sentence: > *"I will need approximately 30 to 35 […]

Generate APK Cordova AS

User How to generate apk file of cordova app in android studio Assistant To generate an APK file of your **Cordova** app using **Android Studio**, follow these steps: — ### ✅ Step-by-Step Instructions #### 1. **Build the Cordova Project for Android** If not already added, add the Android platform: cordova platform add android Then build […]

Generate APK Cordova AS

User How to use android studio to generate apk for cordova project Assistant To generate an APK for a **Cordova project** using **Android Studio**, follow these steps: — ### ✅ 1. **Ensure Android platform is added to Cordova** In your Cordova project folder: cordova platform add android — ### ✅ 2. **Build the Cordova Android […]

Google Merchant Feed Support

User • Support for multiple feeds. • Each feed generates a file on the server. The extension and content are specifically Google Merchant Shopping. • Each generated feed generates a unique URL. • The created feed must be easily readable within the tool to be linked and contain no errors. Please explain above what client […]

Map Boxoffice to Focust Admin

User We have wordpres site stored in site.com then codeignter website stored at site.com/boxoffice/focust_admin now want to map /boxoffice to focust_admin Assistant To map `/boxoffice` directly to `/boxoffice/focust_admin` in a WordPress + CodeIgniter setup, you have two main options depending on your setup and flexibility: — ### ✅ Option 1: **.htaccess Rewrite (Recommended if using […]

Survey Pillars Validation

User @extends('layouts.admin') @section('plugins.Summernote', true) @section('plugins.icheckBootstrap', true) @section('plugins.TempusDominusBs4', true) {{– Customize layout sections –}} @section('subtitle', __('Edit – Survey')) {{– Content body: main page content –}} @section('content_body') {{ __('Edit Survey') }} @if($errors->any()) @foreach ($errors->all() as $error) {{ $error }} @endforeach @endif @if(session()->has('message.level')) {!! session('message.content') !!} @endif {{ __('Loading…') }} {{ __('Loading survey creation…') }} 1 Survey 2 […]

DomPDF Font Setup

User $html = view('client.pdf-report')->render(); $pdf = Pdf::loadHTML($html)->setPaper('a4', 'landscape') ->setBasePath(public_path()); return $pdf->stream('document.pdf'); Quandox <style> @import url('https://fonts.googleapis.com/css2?family=Roboto:wght@400;700&display=swap'); @page { padding:0px; margin: 0;} .section { overflow: hidden;height: 100%; page-break-after: always; padding: 0px 50px; background: url('{{ public_path('client/pdf/img/body_bg.jpg') }}') no-repeat; background-size: cover; background-position: top left;} .main-logo { text-align: center; height: 100%; display:flex; align-items:center; position:relative;} .main-logo img { width: 750px; margin-top:350px} […]

Laravel API Backend Setup

User How to use laravel for api backend only Assistant To use **Laravel as an API-only backend**, you can strip away or ignore the view/rendering part of Laravel and focus entirely on routing, controllers, resources, and authentication for APIs. Here's a complete setup guide: — ### ✅ 1. **Install Laravel (Skip Views/Blade)** composer create-project laravel/laravel […]