@noellemena Hi,
it seems a problem now with the constant naming of ‘taxonomy’ . .. maybe it’s a problem with copy paste here out of the board.
Just remove the -> ” <- on start and end of ‘taxonomy’. PHP should understand it. 🙂
Hope it helped.
All the Best
a bit more detailed 🙂
before:
207: if (isset($instance[$instance[‘taxonomy’] + ‘_id’])
208: && count($instance[$instance[‘taxonomy’] + ‘_id’]) > 0
209: && !in_array($tag->tag_id, $instance[$instance[‘taxonomy’] + ‘_id’])
after:
207: if (isset($instance[$instance[‘taxonomy’] . ‘_id’])
208: && count($instance[$instance[‘taxonomy’] . ‘_id’]) > 0
209: && !in_array($tag->tag_id, $instance[$instance[‘taxonomy’] . ‘_id’])
-
This reply was modified 6 years, 7 months ago by mac303.
Hi,
– Open Plugin Editor in Dashboard
– Select WP Category Tag Cloud Plugin
– Open ‘classes/wpctc_widget.php’
– go to line 207 and change ‘+” into ‘.’
thats it!
All the best