hi,

I just want to inform you that I have input a link for quote link in configuration themes and it works, but when i change it or leave it blank it not change the link that i have input first.

Can you check it, or it just me, the link you can access it in http://www.3r-bakery.com/

Thank you very much.

Comments

the_g_bomb’s picture

Good catch, thanks for reporting it. I have found the issue and will work up a fix asap.

I had planned on working this up to accept node/15, full urls, short urls and everything, but I guess I didn't get round to it and it dropped off the radar.

Line 84 of page-front.tpl.php is the offending issue. replace the "contact" in the link with:
<?php print theme_get_setting('boldy_blurb_link'); ?>

Until I can get it all sorted and pushed.

wiliam_steven’s picture

Wow, thanks for the answer, i will try it and will confirm back to you.

the_g_bomb’s picture

Status: Active » Fixed

Commited a fix

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.

derekwebb1’s picture

I found in my D7 installation that the Quote link being added in hook_node_view() is added without any #theme info. As a result, on my system at least, it does not render when ran through render().

If I add:

if (!empty($vars['content']['links']['quote'])) $vars['content']['links']['quote']['#theme'] = 'links';

In preprocess node then it renders fine.

This should prob be added in quote_node_view() at line 82: '#theme' => 'links',

the_g_bomb’s picture

??? @ deeporange1 was this meant to be added to an issue in the quote issue queue?