Multistep form loses input when visiting previous step

Multistep form loses input when visiting previous step

I am developing a custom module with the ability to store data on an external database using Drupal 7 Form API. I started with the multistep form example, added few more steps and other fields. To implement the ability to edit those data I created a class that... read more
Multistep form loses input when visiting previous step

In search result page, pagination is not showing up

I have migrated a site from Drupal 6 to Drupal 7. Search form I have rendered in page.tpl.php like this <?php $block = module_invoke(‘search’,’block_view’,’form’); print render($block[‘content’]); ?> I am able to... read more
Multistep form loses input when visiting previous step

Filtering a glossary view

I have a glossary view, which is just the one that comes with Views. I want to allow users to filter the results by taxonomy terms (dropdown) and also by title (search field). The problem I’m running into is that when I click on a glossary letter (e.g. X) then I... read more
Multistep form loses input when visiting previous step

Theme image broken link

I am recreating an existing website and part of the process is enabling a theme from the same existing site on my new version. The theme is called microsite and has an image located in /microsite/images/. In the original site, the image from the above directory is... read more
Multistep form loses input when visiting previous step

Glossary view: Show all results separated by letter

I have a glossary view set up. When I go to example.com/glossary/all, all of my results are shown, but I’d like them to be separated by letter. The layout I’m looking for is exactly like this… https://drupal.org/glossary For example.. A Amy Angie... read more
Exposed Filters View is not functional with Anonymous Users

Exposed Filters View is not functional with Anonymous Users

I created a Filtering Search with Multiple Exposed Filters. It all has been working fine except one thing; when I logout as an admin and use the site as an anonymous user, exposed filters don’t work. The screenshot of my exposed filters form is below:- In a... read more
Multistep form loses input when visiting previous step

Display different shipping rate depening on taxonomy terms

I would like to offer a different flat shipping to users depending on what taxonomy terms the product they have in their cart. If a product tagged with "postage rate 1" I would like to display shipping rate 1. If they have a product tagged with shipping rate... read more
Multistep form loses input when visiting previous step

Assigning a badge to a user using Flag, Badges and Rules

I am interested in assigning to user a Badge after he favourites 3 nodes. I want to do this with Flag, User badges and Rules. How can I do that? read more
Multistep form loses input when visiting previous step

How to Auto Publish nodes based on set interval?

I have nodes being generated from a Feeds import on a periodic basis, however when they are imported I would like them to be queued to be published on an hourly basis (or x minutes) I have looked at Scheduler and also Publish Queue. But those modules require input. I... read more
Multistep form loses input when visiting previous step

How to display menu in view Block in drupal 7

I am creating a website in which i am trying to display the submenu into view block . how can i do this. menu is Like A -B-c D -E-F I have to display in block view like This is view block B C | E F this have to display in views block using view. read more
Multistep form loses input when visiting previous step

Ajaxy entity reference views filter by entity reference view

I have two content types that share a taxonomy (Size). On content type A, I have an “entity reference” to content type B in the form of a checkbox widget. What I want: On the node creation form, when I change the size (without saving), the entity reference... read more
Multistep form loses input when visiting previous step

How do I load a third-party PHP library in a module?

Suppose I want to load facebook-php-sdk in my Drupal website, how can I load that class file in a custom module? I tried with the Libraries module, with different functions provided by that module, but everytime I fail. read more