Questions tagged [impresspages]

ImpressPages is a PHP framework with drag & drop admin panel

ImpressPages is a modern PHP framework for website development and management. It features a unique drag & drop user interface that allows less tech savvy users to administer their websites.

152 questions
0
votes
1 answer

Impresspages custom plugins Many to Many relation

I have Product table and Tags table, both managed via Grid, How to add multiple tags to products. Is there a standard way that I can easily achieve or should I make a hack to do it. There is an example of nested grid, but that's One to Many (photos…
flakerimi
  • 2,580
  • 3
  • 29
  • 49
0
votes
1 answer

Menu Child items should be displayed on all pages in ImpressPages

I want to show only childs pages in all pages $pages = \Ip\Menu\Helper::getChildItems(); echo ipSlot('menu', $pages);
0
votes
1 answer

Newsletter plugin custom button text on impresspage

I install Newsletter plugin of impresspage, in widget files i couldn't found way to change text of button "SubScribe" and edit plugin html view
0
votes
1 answer

how to add alt tag in ipslot in impresspages

I want to add alt tag in this,but when I use this, It doesnot work. '244','height' => '163','id' => 'image1','default' => ipThemeUrl('assets/img/ani.png'), 'class' => 'img-responsive'); echo ipSlot('image', $options); ?>
Deeps
  • 11
  • 1
0
votes
1 answer

ImpressPages 4 reflections not creating in server but work in localhost

I have an ImpressPages installation that works fine locally, I pulled the code using git in my centos/apache server and changed the config.php data to have the right database, user and password. Everything seemed to work fine until I tried to upload…
jeruki
  • 1,860
  • 3
  • 20
  • 27
0
votes
1 answer

How can I add widget to the Core group in ImpressPages CMS

Thank you for the great and flexible CMS. Let's explore the limits of the flexibility... My custom widgets are appear in the "Other" group on the toolbar. Is there any way to add it to the "Core" group? I tried to experiment with…
Arkady
  • 387
  • 1
  • 2
  • 11
0
votes
1 answer

Blog widget: How can I show blog from one language within the other one?

Let us assume a website in two languages, e.g. German (default) and English. Now the blog should be German only and these entries shall be shown automatically on the English page. How can I achieve this?
0
votes
0 answers

Transferring website: URLs in Full Tiny MCE don't change

The information provided here are right about menus: https://www.impresspages.org/docs/moving-the-website But they don' seem to work within the links placed within the Full TinyMCE RTE. They are written into the DB in absolute instead of relative…
0
votes
1 answer

How to create a menu from sub pages of a menu item AND use attributes/class on ul?

I understood how to create a menu from the child elements of a specific page (e.g. id=5) like this: $pages = \Ip\Menu\Helper::getChildItems($pageId = 5); echo ipSlot('menu', $pages); Works so far. Just the formatting is due to the lack of…
0
votes
1 answer

Error saving options of Bootstrap Free Template on MAMP Pro

Does anybody have had this error while editing and saving the theme options? [Mon Jul 13 17:15:34 2015] [error] [client ::1] FastCGI: incomplete headers (0 bytes) received from server "/Applications/MAMP/fcgi-bin/php5.3.29.fcgi", referer:…
0
votes
1 answer

How to add a class in li-Tag of a menu?

I seem to be blind, stupid or both but I can't add own classes to li-items of a menu. Here are multiple tries: 'menu1', //menu to be displayed 'class' => 'own-class-test-1', 'css' => array( …
0
votes
1 answer

Impresspages: Can I pre-fill in form fields from a URL query string?

When using the form is it possible to pre-fill in form fields from a URL query string? I've tried using the following code: http://www.example.com/contact?field_6676857232379871233=subject Where "field_6676857232379871233" is the id of the field…
give-me-id
  • 15
  • 4
0
votes
1 answer

Impresspages Data Grid Trouble

I am a data grid implemented in the Impresspages admin environment. The form has date fields. The problem is the following. Entered date is storage in Mysql (and logically returned too) like 000-00-00. I caught the public function…
0
votes
1 answer

TinyMCE in impresspages plugin trouble II

I replaced ipTinyMceConfig() already. It's OK. In the plugin field editor to the richedit is displaying the menus and so on. However when I click in source code menu the source code editor open but disabled for edition. No typing is possible,…
0
votes
1 answer

TinyMCE in impresspages plugin trouble

At first, it is need to know I get active the FullTinyMCe and TinyMCEComplete plugins in Impresspages. Well, I have a new plugin where I have a field like this: $fields[] = array( 'label' => 'Rich Text to Store', 'field' => 'textToStore', …