Hide/Remove a column in a table view

function YOURMODULENAME_views_pre_render(&$view) {
  global $user;
  if ($view->name == 'YOURVIEWNAME') {
    
    unset($view->field['nothing']);
    
  } 
}

Use above mentioned code to hide/remove a column in a table view

Thanks

Create a view for groups of a logged in user

following link was helpfull thanks

https://drupal.stackexchange.com/questions/84500/using-views-to-list-a-m...

This is how to get the OG membership ID:s to start with.

Using SSL on Drupal site - domain not secure

My hosting company has implemented SSL on my account. It is a multi-site Drupal setup and the sites that are accessed directly via my domain registrar (Hover) are working correctly but one site doesn't ... that site is forwarded to FastMail to manage some email and from there it is forwarded to the web host. I get the domain name is not secure and this message: NET::ERR_CERT_COMMON_NAME_INVALID

The other websites had to have the url changed to use https in the settings.php.

Does anyone know how to change this configuration?

Showing a filtered content type depending on webform submission option

Hi all.

I have been working on trying to figure it out how to show a content type depending on the submitted webform selected option.

Let me put it this way:

In one part you have a content type (products) when you add a product you can select options related to a taxonomy term. 
ex: 
Product: apple.
Taxo: fruit.

Then you have a webform, here you add taxonomies as multiple selection options.

The case is:

Distinct field but with specific nid

For the drupal page I am updating, a user found a bug in which the web forum submissions are showing duplicate values of people. I've figured out how to remove duplicates by following this guide https://www.ostraining.com/blog/drupal/duplicate-views-results/ I've looked through our database and found that it is not an insertion error, but rather an error with the site. I've edited the settings to only display distinct values which had seem to fix the issue.

my about sublink page is not clickable

Hi 

I have a website that when you create any page under the about page it is not clickable but when you create it else where in other tabs it's clickable. We already try recreating the page and it continues to do the same problem as before. Need help on this

Pages

Subscribe with RSS Subscribe to RSS - Drupal 7.x