expressionengine

ExpressionEngine channel entries loop to create accordion grid with Bootstrap

喜欢而已 提交于 2019-12-02 08:14:20
问题 I need to create an accordion grid using Bootstrap 4. Something like this: I need to use a channel entries loop within ExpressionEngine to spit out each entry as a column and hide related content inside a collapsable div. When you click on a column, the extra content will reveal itself as a new row underneath its parent's row. If I wasn't using an entries loop I would just create it like this: <div class="row"> <!-- Tiles --> <div class="col-4" trigger="#1"></div> <div class="col-4" trigger="

How can I manipulate a form / inputs to be ignored when a form is submitted

只谈情不闲聊 提交于 2019-12-01 16:27:11
问题 I'm using ExpressionEngine and SafeCracker along with Ajax (plugin: jquery.form.js - http://jquery.malsup.com/form/). Best I can tell, SafeCracker will only allow for updating a single entry at a time. However, the UI / UX necessitates that a list be displayed. I've proof of concept'ed an entry by entry on-demand form. That is, click a particular edit link next to each entry and a snippet of jquery creates a form along with displaying a submit button. Click submit and that single entry

Password Module for Expression Engine?

ぐ巨炮叔叔 提交于 2019-12-01 14:40:15
Just wondering if someone could help me approach a clients request. Is there any modules for expression engine for password protected pages? I need to set up a form for the user to fill out and choose a password and username, this would then give them access to a separate section/page on the site? How could I approach this with EE? There are several ways to password-protect pages in an ExpressionEngine site: Template Preferences Manager Conditional Global Variables Third-Party Add-Ons By far the easiest solution is to use the built-in Template Preferences Manager in the ExpressionEngine

Export ExpressionEngine members to WordPress

喜你入骨 提交于 2019-12-01 13:19:42
问题 I need to export all members from an ExpressionEngine site over to WordPress. How would I go about this? It seems like a daunting task to move them all over, including all their password etc. Any ideas on how to get started? It's fine if the users have to reset their password on logging into the new WordPress site if that's the case. I just can't get my head around it all... 回答1: Here's a query that will give you results which use the column names and formats that you need for your wp_users

Password Module for Expression Engine?

不想你离开。 提交于 2019-12-01 12:32:45
问题 Just wondering if someone could help me approach a clients request. Is there any modules for expression engine for password protected pages? I need to set up a form for the user to fill out and choose a password and username, this would then give them access to a separate section/page on the site? How could I approach this with EE? 回答1: There are several ways to password-protect pages in an ExpressionEngine site: Template Preferences Manager Conditional Global Variables Third-Party Add-Ons By

Insert <div> for every 5 elements using Javascript

穿精又带淫゛_ 提交于 2019-11-30 09:14:52
I have a simple list of images that is being controlled via a CMS (ExpressionEngine). Like this: <div class="wrapper"> <a href="#"><img src="#" /></a> <a href="#"><img src="#" /></a> <a href="#"><img src="#" /></a> <a href="#"><img src="#" /></a> <a href="#"><img src="#" /></a> <a href="#"><img src="#" /></a> <a href="#"><img src="#" /></a> <a href="#"><img src="#" /></a> </div> What I want to do is for every 5 images, wrap them in a div with a class of "slide." To look like this: <div class="wrapper"> <div class="slide"> <a href="#"><img src="#" /></a> <a href="#"><img src="#" /></a> <a href=

How to automatically show Title of the Entries/Articles in the Browser Title Bar in ExpressionEngine 2?

廉价感情. 提交于 2019-11-29 23:10:43
问题 How would I output the title of an entry in ExpressionEngine and display it in the browser's title bar? Here is the content of my page's header: <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> <title>Test Site</title> <link rel="stylesheet" href="{stylesheet=site/site_css}" type="text/css" media="screen" /> </head> What I need is for each page to display the title of the entry in my browser's title bar — how can I achieve that? Part of UPDATED Code: Here is how i

Insert <div> for every 5 elements using Javascript

≯℡__Kan透↙ 提交于 2019-11-29 14:42:13
问题 I have a simple list of images that is being controlled via a CMS (ExpressionEngine). Like this: <div class="wrapper"> <a href="#"><img src="#" /></a> <a href="#"><img src="#" /></a> <a href="#"><img src="#" /></a> <a href="#"><img src="#" /></a> <a href="#"><img src="#" /></a> <a href="#"><img src="#" /></a> <a href="#"><img src="#" /></a> <a href="#"><img src="#" /></a> </div> What I want to do is for every 5 images, wrap them in a div with a class of "slide." To look like this: <div class=

ExpressionEngine rendering JS code with { } brackets

不羁岁月 提交于 2019-11-29 02:28:25
Is there a way to force expression engine to NOT render items within curly brackets as EE code? The google chart tools uses javascript code that contains curly { } brackets, and naturally EE thinks it's a variable and tries to render it. Any way around this? rjb ExpressionEngine's Template Class parses curly braces {} as template variables , looking for three kinds of variables: single, pair, and conditional variables: // Single Variable {summary} // Pair Variable {category} ... {/category} // Conditional Variable {if segment_2 != ""} ... {/if} Curly braces in CSS are considered a special

Migrating legacy users to symfony2

▼魔方 西西 提交于 2019-11-28 17:58:57
I'm moving from expressionengine to symfony2 and I'm looking for the best way to migrate the user passwords. The goal is to let legacy users log in with their existing credentials, while passwords for new users are created the default way. I have looked at custom authentication providers and custom user providers and thought about wether or not to create a separate entity for the legacy users, but I don't know what'd be the best way/design to achieve the above. FYI: As far as I can see, expressionengine just encrypts the password using sha1 and that's it. I am currently using FOSUserBundle.