Skip to main content

Home/ Drupal for Developers/ Group items tagged custom

Rss Feed Group items tagged

informatics12

Informatics Commerce: eCommerce Design and Development, Houston, TX - 0 views

  •  
    Informatics Commerce is an eCommerce consulting and development firm specializing in custom-built Magento e Commerce websites and mobile applications for any-sized business. Our user-friendly eCommerce web development solutions will integrate seamlessly with existing your existing business practices. With easy-to-customize catalog presentation, retail checkout, discounts and deals, and simple site/ account management tools that complement proven SEO and analytics, your Magento storefront will drive sales and increase customer satisfaction.
Felipp Crawly

Amazing Customer Service - 1 views

I would like to thank Onward Process Solutions for greatly helping me with my need for assistance in a Customer service outsourcing project. They provided me with 24/7 phone/ email answering serv...

started by Felipp Crawly on 31 Oct 12 no follow-up yet
anonymous

Free your content of PHP: Moving PHP code out of blocks, views and nodes | 2bits.com, I... - 2 views

  • From the early days, Drupal had the ability to embed PHP code in its content. This provides flexibility and functionality, most importantly, nodes and blocks can contain dynamically fetched data from the database using custom queries and displayed them in other content. This is an easy approach to get such data without writing a module. All you need to do is assign the PHP input format filter to the node or block and paste your PHP code in it, and voila, you have dynamic content. Code in Content: the issues However, this approach is suboptimal and has serious drawbacks, including:
  •  
    From the early days, Drupal had the ability to embed PHP code in its content. This provides flexibility and functionality, most importantly, nodes and blocks can contain dynamically fetched data from the database using custom queries and displayed them in other content. This is an easy approach to get such data without writing a module. All you need to do is assign the PHP input format filter to the node or block and paste your PHP code in it, and voila, you have dynamic content.
Daniel Gregoire

Advanced theme settings | drupal.org - 4 views

  • here. dman - April 6, 2009 - 22:10 This worked fo me. An additional logo (Appeared in the footer everywhere) Not sure why I had to put the submit handler into the #validate pass :-/ It was copied from the existing theme settings funcs. 'campaign_' is the theme name.
  •  
    d.o page for adding theme-settings.php file for custom theme features available at theme configuration page. Highlighting comment that successfully adds an "upload" field for uploading images for custom features.
Csaba Kovács

Perform bulk operations on a custom database table with views | Wunderkraut - 0 views

  •  
    "/** * Implementation of hook_action_info(). */ function mymodule_action_info() { return array( 'mymodule_mytype_delete_action' => array( 'description' => t('Delete mytype'), 'type' => 'mytype', 'configurable' => FALSE, 'hooks' => array( 'mytype' => array('delete'), ), ), ); }"
Scott Blackburn

Customising the user registration form | drupal.org - 0 views

  •  
    These snippets allow you to override the default user registration layout using a custom user_register.tpl.php.
Daniel Gregoire

node_example.module | Drupal API - 0 views

  •  
    Basic creation of programmatic custom content type
Daniel Gregoire

Module Development - Schema Won't Install | drupal.org - 0 views

  • I had similar symptoms ... a simple install file that wouldn't create a table. However, I got it to work by going into the Drupal system table and deleting the record for my module. Then the next time that I enabled my module, Drupal freshly discovered it and ran the .install file to successfully create the table. Summary. When you have a module already in use (and so it appears in the system table), and *then* as a developer you create its .install file, it doesn't look like a *new* installation to Drupal (since the module name was already in the system table), so hook_install never gets called.
  •  
    Trick for schema's that won't install. If you have a custom module that you _had_ installed before making a .install file and including a schema, you need to: (1) Disable your module (2) Uninstall your module (3) Delete your module's row in the 'system' table in your Drupal database. Then you can re-introduce your module, and all its files will be recognized.
Ace Dee

Make Your Website Design SEO-Friendly with Oracle Digital - 1 views

Our company has realised that our website design should be more than just how it looks. Oracle Digital's SEO services have helped us in optimising our website design that appeals to our customers, ...

SEO

started by Ace Dee on 16 May 11 no follow-up yet
Daniel Gregoire

Apache Solr and Drupal Default's Search | Trellon - 0 views

  • One issue that comes up from ApacheSolr being a separate search page is that the search form does not go to it by default. This is the $search_box in the page.tpl.php template. The way we change this behavior is to add a new submission handler to that form. You can create a custom module for this or put it in your custom theme. <?php/*** Implementation of hook_form_alter()*/function custommodule_form_alter(&$form, $form_state, $form_id) {  // Add submission handler to redirect to apachesolr  if ($form_id == 'search_theme_form') {    // Add a submit, because the search form redirects to a specific place    $form['#submit'][] = 'custommodule_search_submit';  }}/*** Implementation of form submit function*/function custommodule_search_submit($form, &$form_state) {  // Get form ID  $form_id = $form['form_id']['#value'];  // Create new redirect  $form_state['redirect'] = 'search/apachesolr_search/'. trim($form_state['values'][$form_id]);}?>
amelia_joe

Drupal Web Development Company Los Angeles - 0 views

  •  
    Fortune Innovations Los Angeles Web Development Company provides affordable custom website design with creative design using Drupal CMS Development.For more details visit:http://losangeles.fortuneinnovations.com/drupal-cms-development
amelia_joe

Wordpress Web Development Company Los Angeles - 0 views

  •  
    Fortune Innovations Los Angeles Web Development Company provides affordable custom website design with creative design using Wordpress CMS Development. For more details visit: http://losangeles.fortuneinnovations.com/wordpress-cms-development
amelia_joe

Update Your Samsung Galaxy S3 to Android 4.4.4 KitKat with 11 Easy Steps - 0 views

  •  
    Recent reports revealed that Samsung Galaxy S3 (GT-I9300) users can still upgrade their device to the latest Android 4.4.4 KitKat version by using customized firmware called LiquidSmooth KitKat ROM.Read more at: http://losangeles.fortuneinnovations.com/news/update-your-samsung-galaxy-s3-android-444-kitkat-11-easy-steps
informatics12

eCommerce Website Design Houston, Website Designer Houston - 0 views

  •  
    At our eCommerce website designing company, we have developed tens of online stores, and we understand what it takes to convert your visitors into buyers. Thanks to complete responsiveness, our sites are all ready for the mobile era, making it easy for your customers to browse and order your products. And thanks to intuitive CMS, you can manage your inventory and run your business hassle-free.
anonymous

The Great Pretender: Making your data act like a field | Lullabot - 7 views

  • Now, though, it's possible for any module to tie into CCK's field management page to control the positioning of custom content. The key is hook_content_extra_fields(), and in this article we'll show you how to use it.
  • Now, though, it's possible for any module to tie into CCK's field management page to control the positioning of custom content. The key is hook_content_extra_fields(), and in this article we'll show you how to use it.
  •  
    Dubai Independent Escorts Service Dubai Independent Escorts Agency Independent Escort In Dubai Independent Escort In UAE Independent Escort Service Dubai Independent Escort Agency In Dubai Independent Model Escort In Dubai Independent Indian Escort In Dubai Arab Call Girls In Dubai
paresh sagar

Top Drupal Web Development Company in India & USA - 0 views

  •  
    Top Drupal Web Development Company in India & USA. Our Drupal developers use a combination of custom and contributed Drupal Modules to create innovative solutions for your clients.
paresh sagar

Premium Drupal Development Company in USA, India - 0 views

  •  
    Excellent WebWorld is the best Drupal Development services Company in USA, India and surrounding the area. Whether it is the complete end-to-end Drupal solution or assistance with custom Drupal theme development, our expertise is here for you.
shinele lee

Professional seo company - 2 views

Our SEO services helps small to large scale business find more clients and customers! Use our proven internet marketing strategies without risk. Guaranteed. To know more about SEO services visit us...

started by shinele lee on 17 Oct 12 no follow-up yet
clariene Austria

How to Write SEO Landing Pages That Convert - 1 views

seo landing pages are that part of your website where you can convert your leads or your traffic as your actual customers. They can come in three (3) varieties like, reference, squeeze, and transa...

started by clariene Austria on 23 May 12 no follow-up yet
Rajiv M

User Experience (UX) Design, Ux Design, UX/UI Design, UI UX Design - 0 views

  •  
    Orange Oats is one of few unique User Experience UX Design, User Experience Design, User Interface Design, UX Design, Mobile Application Design, UX UI Design, UI UX Design, Software User Interface Design & web user interface design Company who does quality design for the customer to love in.
1 - 20 of 40 Next ›
Showing 20 items per page