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");]?>'>
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.
just wondering if it is possible to instead of using google analytics on google can you add the graphs to your own custom CMS panel instead of using the google service? Just like the iframe widgets you have with piwik? and if you can, can someone direct to where as i can find out how to do this?
Google does offer an API for retrieving data, but the catch is that the person going to your web page has to be able to login to GA to see the data. There's no official way to write a script to authenticate and retrieve GA data to show to anonymous visitors.
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.
I have googling this for weeks now and i can't find a nice answer and uique way to do this.
I have a symfony2 application that is using FOSUserBundle. The app is available in different languages.
What i would like is to have an unique way to handle the locale detection. Since it has been moved from the session to the request i don't see a clear way to achieve that.
step a) user is not logged, maybe 1st time we saw it. Take the locale from the request header Accept-Language:en-US,en;q=0.8,fr;q=0.6 (for instance). Serve the user a localized version of login page
step b) user is now loggued in. of course we still serve him is prefered language based on the same header
So far i have done this using ResponseListner but it seems it won't work for the 1st request and have troubles with the FOSuser login page.
Any help with samples would be very appreciated.
LuneticsLocaleBundle is great for that: https://github.com/lunetics/LocaleBundle
It allows you to create a custom Locale Guesser:
https://github.com/lunetics/LocaleBundle/blob/master/Resources/doc/guesser.md
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
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 .