Coming from Drupal, I would recommend using the shop system Commerce rather than Ubercart for the features you’re looking for.
It has already been ported to Backdrop CMS.
General...
When logged in:
On a page with a path prefix it shows the language of the prefix.
On the front page if I add the path prefix it shows the language of that prefix...
Hi! The description is still very vague and lacks step-by-step instructions on how to reproduce. It doesn't include the version of Backdrop either, nor a list of contrib modules you are using...
Posted6 days 16 hours ago by Alejandro Cremaschi (argiepiano) on:
Sorry, it did seem confusing when I read it back...
So if I add some html to a text field, for example in a page or a block, whatever the text format of the field may be (raw html or basic...
Posted1 week 9 hours ago by (beckdalecreative) on:
Could you please post clear, step by step instructions to reproduce the problem? Your first message refers to HTML content, and your second to text formats. Please add details to reproduce each...
Posted1 week 12 hours ago by Alejandro Cremaschi (argiepiano) on:
Comments
This issue may be related (and it looks like it has a PR that can be tested):
https://github.com/backdrop/backdrop-issues/issues/2134
That PR wont be in production any time soon. But you could make a quick access condition module, its quite simple. Use as a guide: https://github.com/backdrop/backdrop/blob/1.x/core/modules/layout/plugins/access/path_layout_access.inc or https://github.com/backdrop-contrib/block_scheduler
Your form function would probably be something like:
$form['nid'] = array( '#type' => 'textfield', '#title' => t('Node NID'), '#default_value' => isset($this->settings['nid']) ? $this->settings['nid'] : '', ); $form['term'] = array( '#type' => 'textfield', '#title' => t('Term'), '#default_value' => isset($this->settings['term']) ? $this->settings['term'] : '', );And your access function:
function checkAccess() { $entity = $this->contexts[$this->entity_type]->data; return isset($entity->{$this->settings['term']}); }Some adjustment may be necessary.
As an easy workaround without any coding Views could be your friend.
We'd need some more info about your use-case though. Could you describe a bit more, please?