Home User profile
tagDiv Member
This user did not write anything. So we are just showing here some random text to make the profile page look nice :)
Radu A
tagDiv Member

hello,
I need wp-acess to check this,
please send on contact@tagdiv.com your wp-access login details to test it.
put in the message the link of this thread and alse write ‘FOR RADU A.’

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hello,
on the slider add this: http://screencast.com/t/5ZJTSQRsi

on the block , add this: http://screencast.com/t/WOfJhbKq6pw

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hello,
I’m not sure if this is working but you can try this:
http://screencast.com/t/kcxkHhWS

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hello,
this theme also has options on post pages:

follow this:
1. http://screencast.com/t/PuTUCrP1sSJQ
2. http://screencast.com/t/qsTE0ov2II4c
3. http://screencast.com/t/UdIQfhCwm0oO

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hello,
what type of hosting do you use?
try to stay away from really cheap ones.
there is a thread where users have posted solutions for speed increase
https://forum.tagdiv.com/search/pagespeed/

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hello,

glad to hear that.
thank you for posting you solution so that other user can find this.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hello,
sorry we don’t have a spanish translation,
but go here: http://screencast.com/t/Yg8sS7YW and you can do the translate very easily

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hello,
if you have an older version of the theme please update to the latest version.
also disable all pluggins and see if it works, could be a conflict between pluggins.

can you please give us more details, your site link, also if it possible wp-admin access

we will try to take a look.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hello,
about the counter plugin, please update the plugin to the latest version

for the player:
http://screencast.com/t/zu8f9V9EK
the palyer is as wide as the page but on the left side it (the player) has a chat room
if there is a way to make only the viewable bigger, it should be from the player.

I saw that you fixed your problem with the logo.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hello,
please update to the latest version.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hello,

do a function that duos only

function revv(){
   global $post;
   $test_module_inst = new td_module_1($post);
   $review = $test_module_inst->get_review();
 return $review;
}

and call this function from your function

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hello,
on http://codex.wordpress.org/ you can find a lot of answer to your wordpress (not our theme) code question.

post_type = what is the post type; in this example is post but can be of other type (attachment for ex)

showposts = how many posts of this type to show.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hello,
you can use whatever name you want to name the buffer, basically in that variable (AKA $buffy) we store a big change of the page and at the and we write it all in one peace.
this is for optimization purposes.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hello,
I have fixed the documentation
https://forum.tagdiv.com/how-to-add-ads-in-front-of-and-behind-the-contents/
try it now.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hello,

http://screencast.com/t/edPstfLuKYF

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hello,
thanks for your great suggestion.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hello,
we fully integrated the visual composer in our theme, so we did not used as a plugin.
unfortunately to add new elements in our version of you need to modify the code.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hello,
did you find any conflicts elsewhere?
if it works for you live it like that, or tell us if you have this problem elsewhere.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hello,
for now the css is the only solution.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hello,
I have tryd to do something different,
please try this code, if this doesn’t work sorry

function content_injector($content) { 
		global $wp_query;
		global $post;	
		$postid = $wp_query->post->ID;                  
		if (get_post_meta($postid, 'top_ad', true) != 'off' ) {	
			//top_ad code
		} 		
		if (get_post_meta($postid, 'bottom_ad', true) != 'off' ) {	
			//bottom_ad code
		}
		 if (is_single()) {
			$share_after_ad = do_shortcode('[shareaholic app="share_buttons" id="4703992"]');
			$related_after_ad = do_shortcode('[shareaholic app="recommendations" id="4704000"]');
		 }

		$test_module_inst = new td_module_1($post);
		$review = $test_module_inst->get_review();
	        
		$content = $top_ad . $content . $review . $bottom_ad . $share_after_ad . $related_after_ad;
		
		return $content; 
}
add_filter('the_content', 'content_injector');
Radu A
tagDiv Member

hello

try this

function content_injector($content) { 
		global $wp_query;	
		$postid = $wp_query->post->ID;                  
		if (get_post_meta($postid, 'top_ad', true) != 'off' ) {	
			//top_ad code
		} 		
		if (get_post_meta($postid, 'bottom_ad', true) != 'off' ) {	
			//bottom_ad code
		}
		 if (is_single()) {
			$share_after_ad = do_shortcode('[shareaholic app="share_buttons" id="4703992"]');
			$related_after_ad = do_shortcode('[shareaholic app="recommendations" id="4704000"]');
		 }

		$test_module_inst = new td_module_blog();
    $review = $test_module_inst->get_review();
	        $content = $top_ad . $content . $review . $bottom_ad . $share_after_ad . $related_after_ad;
		
		return $content; 
}
add_filter('the_content', 'content_injector');
Radu A
tagDiv Member

hello,
1. you cannot add a page to the slider.

2. try this : http://screencast.com/t/Hgg73ixh

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hello,
add this line:
$post_content = preg_replace(‘((( ht|f)tp(s?)\://){1}\S+)’,”,$post_content);

like : http://screencast.com/t/cTn1rNMG

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hello,
i sow that you are using W3 Total Cache, please disable that, it conflicts with the theme. Also if you have additional pluggins installed, try deactivate them, then try again.

Thanks for you message.
Radu A.

Radu A
tagDiv Member

hello,

as an elemnt no, we are using this code : http://screencast.com/t/YxOaFDQUCaP

Thanks for you message.
Radu A.

Viewing 25 posts - 826 through 850 (of 854 total)