Questions tagged [octobercms-plugins]

Plugins are the foundation for adding new features to OctoberCMS by extending it.

315 questions
0
votes
0 answers

How to use partial tag inside a plugin in OctoberCMS?

Inside my plugin in /plugins/acme/blog/views/mytemplate.htm I have this code {% partial 'test' vars=values} this returns Unknown "partial" tag and it's called by an internal code with return View::make('acme.blog::mytemplates', $values); since…
Sandro Antonucci
  • 1,683
  • 5
  • 29
  • 59
0
votes
0 answers

October CMS Magic Forms Plugin reCaptcha "The partial 'recaptcha' is not found"

I have October CMS v1 on my website and Magic Forms Plugin. I want to use reCaptcha in my forms. I set the Site key and Secret key. And put the code:
{% partial '@recaptcha' %}
But I have an error The…
0
votes
0 answers

Is there another way to apply a layout in October CMS?

I have a layout file which I am accessing and editing through the back end then CMS then layouts. When I apply this layout to the home page with the URL of / the changes are not appearing on the front end. When I apply this layout to all other pages…
0
votes
0 answers

Is there a way to make a controller show behaviours in Otcober CMS?

I want to modify a plugin's controller behavior but when I open the builder and select the plugin ProEvents then go to GeneratedDates controller I am being presented with a blank page like below. There is one thing I have noticed. The same page on…
0
votes
0 answers

Is there a way to fix October CMS not finding a configuration file?

I have a website developed using October CMS based on laravel. When I run the local site I get no error but when I host the website on Linux Server Ubuntu I get an error whenever I visit a plugin to create events saying: Unable to find…
0
votes
0 answers

How adding extra data product item in plugin easyshop octobercms

I wanted to customize and add some extra data for my site, but I can't find plugins for do that. I use easyshop plugins and using October CMS Anybody have suggestion for the plugins? I am still learn about this cms...
0
votes
1 answer

October CMS, I can't make Subscribe form by Magic forms plug-in

I have a October CMS setup and I have a Subscribe form in footer. Footer is a default.htm' partial into Layouts. I override Generic Ajax Form html with a partial, it's path partials\subscribe\default.htm and I include it into Footer. And I try to…
G.D.i
  • 47
  • 6
0
votes
1 answer

How to Using Pagination in oc-api-plugin?

octobercms plugin: oc-api-plugin I don't know what's missing I've been trying for a while with no success using API Using Pagination Below is the program I built routes.php 'api/v1/sample', 'namespace' =>…
Josh
  • 3
  • 2
0
votes
1 answer

How can I use a variable that belongs to rainlab.user plugin in my custom component

I'm building a website in October CMS, I installed rainlab.user plugin for user account management. Now I'm currently trying to create my custom component named "UserDetails.php". I am able to get the username in web page using {{ user.username }}.…
DSP
  • 33
  • 1
  • 5
0
votes
0 answers

What is the best way to get around the Error 200 in October CMS version 2 when running deploy to server?

Error Below when deploying (with the Deploy App) the core archive of October CMS version 2 Is shows that it is seeing the beacon, but still gives error below. Update Failed A valid response from a beacon was not found. Add ?debug=1 to your URL, try…
0
votes
1 answer

I need to write a plugin that exports data both in CSV and XLSX formats. October CMS

I need to write a plugin that exports data both in CSV and XLSX formats*. As a base I follow Vojta's plugin code (1) that uses ImportExport backend behavior. The main plugin controller DataImportExport inherits a import-export Behavior from the…
0
votes
2 answers

OctoberCMS / Anonymous Global Scope

I am use OctoberCMS Rainlab.User plugin to manage authentication. I have various models and that belongTo User. How do i set up an anonymous global scope on each model to only return the records that belong to the authenticated user? Many thanks in…
Jakef19
  • 151
  • 1
  • 1
  • 7
0
votes
1 answer

Cannot find 'Created Before Payment' method (Lovata Paypal Shopaholic plugin for OctoberCms)

I have purchased the Paypal Shopaholic plugin and looking at docs: https://octobercms.com/plugin/lovata-paypalshopaholic > Documentation I can't seem to see where the 'created before payment method' is referred to here?: Is there an example of…
gvanto
  • 1,936
  • 3
  • 21
  • 26
0
votes
2 answers

Open Media Browser in specific folder October CSM builder plugin

Hi I'm looking for some idea how to do it In my own modules ( articles / gallery / carousel ... ) created in October CMS Builder plugin using filed type mediafinder for images and documents. Im need in my plugins open backend media browser -…
0
votes
1 answer

October CMS: Custom Plugin - Reference to current RainLab.Blog Post from component

I am brand new to developing a custom October CMS plugin and I'm working on a plugin to extend RainLab.Blog where I can't seem to reference the current single post from my plugin's component when visiting an article. Assuming I'm reading a blog post…