It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I have create a content type for drupal website as shown below:
Is there any built in module similar to this or any tutorial links that would help me to start making this kind of content type
Thanks in advance
Well for starts, your going to need CCK to add custom fields to your content type (image, description, title, specifications, applications, design features)
http://drupal.org/project/cck
Your going to need to make some taxonomy to tag each of your nodes with
Once you create the taxonomy, create custom fields that are (Taxonomy Term References)
Drupal Quick Tabs will help create the "look & feel" for the bottom tab area
http://drupal.org/project/quicktabs
You most likely will need Views as well
http://drupal.org/project/views
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
If possible, kindly tell what is the name of the item attached in the image (e.g. Excerpt, post summary or anything else) in wordpress .. The purpose of knowing the name is so that the appropriate term can be searched on the internet.
if possible, also kindly tell that how can this be achieved via plugin or programming . (showing posts belonging to certain category on a certain page..
Regards,
The image has many terms , it can be refereed to as the_post_thumbnail , an attachment, an image type attachment , a thumbnail ,featured image . etc depending on context .
But I think that the term you are searching for is the_post_thumbnail() and Featured_image
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
Below is my requirements.
Google Analytics had been implimented to the website and SEO'S have tried to edit the meta data on website for the required pages but were not able to.
They demand a section to each page so the meta data entered is unique for every page. Currently every section on pages are common and changes made on one will affect others.
I have a common header page that is included in every page of website, which is containing the meta data.
Kindly someone help regarding the exact php functionality that should be implimented for achieving the above requirements.
Edit the header in such a way that meta keywords are php variables and initialize variables to suitable values before the include in every pages .
OR
maintain a php assosciative array in header page. use the name of the page as the index and metakeywords of the page as values
then in header
<meta keywword='<?php echo $arrayname[basename($_SERVER['PHP_SELF'], ".php");]?>'>
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I'm a bit new to wordpress plugin coding. I've been working on a plugin that will be very large, and contain many custom data structures.
I know this is a pretty general question, but I have a list of items (groups) on my options page. I'd like the entire options page to just use the settings api, but this list needs to have items added/edited/deleted from it. Does anyone have a good example of how to do this?
although I saw an exmple before - I can not remember where . But what I have tried to explain to you above is that first you need to add the elements using jQuery append like here : Dynamically adding HTML form field using jQuery then, for the options, just create an array, like here described here : http://wordpress.org/support/topic/dynamic-options .
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
Firstly apologies I've re-edited this as the original was so vague.
What I have is a Drupal overlay which only displays a form. The issue is the overlay also displays the page header such as the logo and menu links. I don't want it to display this and was hoping someone could tell me how to prevent this without using CSS to hide the header div within that specific overlay, as although this is a temporary fix, is poor coding.
Thanks,
Rick
You can use drupal_get_form('form_id') to get the complete html of the form in a div and use css/js to get desired result.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
I would like to as how can we have the login similar to the stackoverflow openid using drupal 7? In stackoverflow, we have various login options like facebook, google, etc, the image is show to choose various accounts. But I tried for drupal 7, only the 'Log in using OpenID' is shown beneath the login options. How do I show the multiple account options besides 'Log in using OpenID'.
Use the Janrain/RPX Module.
Create some HTML that shows the OpenID providers that you want to mention explicitly.
Create some JavaScript that fills in the text input field when clicking on the OpenID provider in the HTML.
Wrap it into a Drupal module.