Code

Discussion on Botble - Laravel CMS, CRUD generator, Modular & Theme system, Role permissions, Multilingual blog

Discussion on Botble - Laravel CMS, CRUD generator, Modular & Theme system, Role permissions, Multilingual blog

By
Cart 1,063 sales
Recently Updated

botble supports this item

Supported

This author's response time can be up to 2 business days.

804 comments found.

Do you own the Mega Menu and also a virtual store?

Hi,

Sorry, we don’t have that features. All features are available on the demo site.

Thanks!

hi page builder option is available in this or page builder plugin available for this

Hi,

There is no page builder available for this CMS.

Thanks!

ok thanks for reply but is it possible other way

We will think about it. For now, we just can build a page using Ckeditor and shortcode.

Thanks!

Hello ! :)

is it possible to use the gallery plugin into vue js?

Hi,

You can get list images from gallery plugin then display in frontend if you need.

Thanks!

Hi, I have a business need to duplicate the “Botble\Blog\Forms\PostForm” multiple times but with different particular default values for each one of the duplicated forms.

I can duplicate the “PostForm” and apply the needed changes.

but how I add the new route and display in the admin panel

Hi,

I don’t understand what you want to do. To add new route, you need to add it in your plugin routes /platform/plugins/your-plugin/routes/web.php

And add new controller method in /platform/plugins/your-plugin/src/Http/Controllers/

Thanks!

sorry for not being able to clarify my request :), I solved it.

by the way, day after day I figuring out how much you did a very good job to build this platform.

it’s really great work.

only I have one comment; that you need to provide detailed documentation. this will take your platform towards extra mile competition.

good luck

Hi,

What is you figured out? Can you contribute our docs on Github https://github.com/botble/docs-cms?

Thanks!

I want to suggest to include a subscription plugin, will be very positive for this application, it almost include everything, very good.

Hi,

Sorry but we don’t have plan to add new plugin to our CMS. We want to keep it simple, easy to use and cheap price.

If we have a new plugin, we will sell it as a separate plugin. You can check Payment plugin https://codecanyon.net/item/payment-with-stripe-paypal-plugin-for-botble-cms/25702741

Thanks!

Ok no problem, if you post this as a new plugin I can buy it, thanks.

Hi, when using RV_MEDIA_WATERMARK_SOURCE I got this error “image source not readable”

the .env configuration is as follow:
RV_MEDIA_WATERMARK_SOURCE=/home/[some-user]/public_html/public/themes/[theme-name]/img/watermark/watermark.png

kindly advise

Hi,

It’s a bug in our CMS, please open file platform/core/media/src/RvMedia.php line 284 then change public_path to Storage::path

Screenshot: https://prnt.sc/rxmhxk

Thanks for your feedback!

thanks, it solved the issue

Hi there ! :)

I would like to change and adapt some core files for my website uses. Is there a way to create a child of the core ? Just like WordPress child theme.

I would like to keep all the actual core functionnalities, and add or update those functionnalities into an other folder, to prevent the lost of all modifications due to an update of the core.

Thank you very much for your answer ! :D

Hi,

We don’t have child theme so you can’t override core functionalities from other folder.

Folder platform/core just like folder wp-admin in Wordpress, you shouldn’t change it.

Thanks!

Ok thank you for your answer ! :)

Hi, where to configure the ckediror in order to customize the toolbars of the editor?

Hi,

The configuration for Ckeditor is located in platform/core/base/resources/assets/js/editor.js.

After you change Js file, you need to run “npm run prod” to re-compile it.

thank you for your feedback. after re-compiling the code again.

what exactly the files do I need to upload to the production in order to reflect that changes.

Hi,

File platform/core/base/resources/assets/js/editor.js will be compiled to public/vendor/core/js/editor.js.

You can see it in platform/core/webpack.mix.js

Hi, I would like enable the “shortcodes” for the posts created by members at this link “account/posts/create”

the same as the posts created by admins

Hi,

It’s not easy to do that, you have to modify platform/plugins/member/src/Forms/PostForm.php and platform/plugins/member/resources/views/forms/fields/custom-editor.blade.php

That feature is not available in admin panel. For member panel, you need to do it by yourself, it will take many hours to do.

Thanks!

Hi, I don’t understand the flow that I need to follow in order to translate my theme strings using your new plugin “Translations”

I only using one language “Arabic” and it’s added in the control panel. the translation file placed in this path = “platform/themes/mytheme/lang/front.php”

I tried to go to “translations” settings in the control panel and chooses “Append New Translations” then clicked on “Import Group” button, but my translations not showing in the control panel

Hi,

Please check the document here: https://docs.botble.com/cms/5.3/theme-localization

We’re using JSON localization so please create file platform/themes/mytheme/lang/ar.json to translate your theme.

Thanks!

Hi, Could you please mention the latest update features

Hi,

You can see release notes here: https://docs.botble.com/cms/5.3/releases#version_5_3

Thanks!

I am a huge fan of Botble CMS, I also found this video (https://www.youtube.com/watch?v=JAiKnnb9dH8) very helpful to generate a plugin. Can you also make a video to show us how to display those iformation a master/detail page, so we can show what we added in backend in frontend? We can fully use it with a frontend display. I hope you will make a video to show us how to display demo plugin content in our website. Thank you for proving a very best CMS. Best of luck :)

Hi,

It’s quite easy to display data on front site. Just need to query data and display it.

We will think about making a video for it.

Thank you!

Hi I am sure it will be very easy, but it will be much easier if you show us it once. :)

Thank you for the great CMS.

When create a new user from the admin panel and while system trying to validate the username and email via sending post request to “http:/domain/admin/system/users/create”

I got 500 response with below error message

message: "Method Illuminate\Validation\Validator::validateJsValidation does not exist." 
exception: "BadMethodCallException" 
file: "/path/to/project/vendor/laravel/framework/src/Illuminate/Validation/Validator.php" 

this error ocured in both local machine and server as well, even when I tried to install a fresh copy from the source code kindly advise

Hi,

It’s so weird. I can’t reproduce that bug on my local and demo site.

Can you download the latest version then replace folder /platform and /public/vendor?

Thanks!

Hi, I applied some changes to the users table successfully, also I applied these modification to the User Model but the changes I applied to the ProfileForm and UserForm not applied to the admin panel

Hi,

What’s your changes? I can’t help if you don’t give me your code.

Hi, the following condition always empty although the post author_id in posts table is not empty

@if ($post->user->username)

kindly advise.

Hi,

You need to use $post->author->username.

Hi, I need to customize the breadcrumbs in my theme.

in your documentation you mentioned that in order to customize the breadcrumbs you need to use this code. <ul class="breadcrumb"> @foreach (Theme::breadcrumb()->getCrumbs() as $i => $crumb) @if ($i != (count(Theme::breadcrumb()->getCrumbs()) - 1)) <li><a href="{{ $crumb['url'] }}">{!! $crumb['label'] !!}</a><span class="divider">/</span></li> @else <li class="active">{!! $crumb['label'] !!}</li> @endif @endforeach </ul>

but, still I am not able to know where to use this code, I need to make this code as a template, so when at any given time need to change the code it will be easy.

kindly advise

You need to add more breadcrumb item from controller method.

Theme::breadcrumb()->add('label', 'http://...');

Docs: https://docs.botble.com/cms/5.2/theme-breadcrumb#breadcrumbs

could you please specify which controller and which method exactly, also what classes do I need to import in order to mention the

Theme

Sorry, we have many controllers so I can’t tell you exactly controller.

You need to add import statement before using it:

use Theme;

You just can modify breadcrumb template, can’t modify breadcrumb items for existed routes.

Hey does it have Google AMP support? Are pages also delivered as amp pages?

Hi,

It’s not supported Google AMP.

Thanks!

No plan for it? I heard Google prefer Amp pages over normal pages.

We don’t have plan to do it. Sorry about that.

Hi, in “blog posts” grid page in the admin panel, when I select multiple records and choose anything from the “bulk actions” pick-list I receive the following error message “The class field is required.” with http-code 422.

kindly advise

I think it has configuration issue on your localhost. it should work on hosting so I think we don’t need to fix on your localhost.

okay, could you please give me any instructions in order to be able to investigate the issue so I’ll make sure that I’ll provide the proper configuration in production

I’m not sure what’s wrong in your localhost. I think you should use Mamp pro to make localhost then it should be fixed.

How do I run a seeder Laravel of a plugin in “plugins” directory ?

Hi,

We just support our customers, please purchase our CMS first.

Thanks!

Hi, I added images to themes/[my-theme]/public/img/... in order to be able to use in the design.

in my view I am using to render it, although I getting strange issue that some of these images not working and return 404 not found error although a lot of them are rendering fine.

I faced this issue also with one css file which placed in my public folder and called in the theme config file, although all other css files are working fine.

kindly advise. :)

Hi,

You need to put your images in /public/themes/[my-theme]/img/..

Or run command “php artisan cms:theme:assets:publish” to bring your images from theme to public folder.

The same for css & js files.

worked :), appreciate your prompt response.

by
by
by
by
by
by

Tell us what you think!

We'd like to ask you a few questions to help improve CodeCanyon.

Sure, take me to the survey