1,082 reputation
18
bio website
location Kiev, Ukraine
age 30
visits member for 1 year, 2 months
seen Apr 26 at 10:34
stats profile views 39

I have no fear, I have strong beliefs.


May
1
awarded  Tumbleweed
Apr
24
asked Captcha doesn't validate
Apr
12
revised Pull all articles from my Drupal Site as JSON
edited body
Apr
11
revised Pull all articles from my Drupal Site as JSON
added 41 characters in body
Apr
10
answered Pull all articles from my Drupal Site as JSON
Apr
10
comment Pull all articles from my Drupal Site as JSON
Which version of Drupal are you dealing with?
Mar
4
awarded  Yearling
Nov
23
answered CCK field related to non-drupal table columns
Oct
20
awarded  Caucus
Sep
1
comment Add a trademark to a word everywhere on a site
Do you need specifically to change it when it is being rendered? I'm thinking of a solution that would replace these words in content once, instead of calling that code every time the page is served, or this is not the case for you?
Jul
26
revised php code to load latest posts from a term
deleted 5 characters in body
Jul
26
answered php code to load latest posts from a term
Jul
26
comment php code to load latest posts from a term
is it about drupal 6 or 7?
May
17
revised Drupal Multisite (subdomain) Not Working
edited tags
May
17
answered Drupal Multisite (subdomain) Not Working
May
14
comment How to set/display select options in selectbox using form-api
that's true, but in fact form API in D7 is 95% the same as the one in D6.
May
13
answered CKeditor remove <p> tags
May
13
comment How to allow a client to do specialized styling for a single node?
the point is that you use the very same regions that the ones in your main theme, but you can layout them differently in your custom page--your-page-url.tpl.php file. At the very least you can put all the blocks to the one region and render that region somewhere on the page. Besides that you can of course print any block with the following code: $block = module_invoke('module_name', 'block', 'view', 0); print $block['content'];
May
13
comment How to allow a client to do specialized styling for a single node?
that's one of the possible solutions. You can create new regions for blocks within your existing theme. You can create a new theme with its own set of regions and assign this theme only to this page using themekey module. And of course you can not to create new regions and just make use of css to align blocks properly within your content region. In my opinion the last option suits this task best.
May
13
answered How to allow a client to do specialized styling for a single node?