Search results

  1. D

    How to redirect users to original website?

    Hey guys, Someone is stealing my website content and using my image URLs. I know that exists a code to redirect users to my website, but I can’t remember the code. Can someone help me with that? Thank you.
  2. D

    How can I prevent someone using my database?

    Hello guys, Today I notice that someone created a site similar to mine and is using my database to show my posts and all my work. He is using a different domain, same theme and his own ads to earn money. Is there anything I can do, please? My site (NSFW): http://www.tbvop.com His site...
  3. D

    I need help with Conditional Tags

    Hello guys, Can someone give me a little help here? I want to show a widget on all pages except in a specific page and on a specific custom post_type. This is what I have to show in all pages except the page /videos/ !is_page('videos') && $post==$posts[0] && !is_paged() Is working great...
  4. D

    How to add pagination?

    Hello, I'm having some issues adding a pagination in a page. Can someone help me? I want to use this plugin to insert pagination with the following code: <?php wp_pagenavi(); ?> When I add this code, the pagination doesn't appear. The only pagination code I can make to work: <?php...
  5. D

    Youtube channel terminated

    Hello guys, Maybe someone can help me... Last week I created a youtube channel and I uploaded two videos. This channel was created to upload movie trailers with Portuguese subtitles translated by me and my daughter. Yesterday I received a notification from Youtube saying that my account...
  6. D

    How to fix 404 errors in GWT?

    Since last month, I see a huge increase of 404 errors in my website that doesn't make sense. For example: Any idea of what could be? It seems that is grabbing the image title and put in front of the url: domain.com/post-title-here/imagetitle Any idea of what could be and how to...
  7. D

    Check value of profile field – displaying images instead

    Hello guys, Is it possible to check if a custom profile field (checkbox) value is x, y, and z. My purpose for this is to display a corresponding image for each possible choice, in user profile and under user avatar in bbpress. Example: Male: male symbol image Female: female symbol image...
  8. D

    bbpress help

    Hello guys, Anyone here familiar with bbpress? I'm migrating from vbulletin to wordpress. In vbulletin, I have a feature showing under user avatar, that shows a image "My photos", and when someone clicks there, goes to a list of topics created by the user in forums ID X and Y. If no...
  9. D

    Show badgeos achievements under avatar in bbpress

    Hello guys, Anyone here familiar with badgeos, buddypress and bbpress? If yes, maybe someone can help me. I have found this code to place badges (achievements) under user avatar in bbpress: add_filter( 'bbp_get_reply_author_link', 'my_append_badges_via_filter', 10, 2 ); function...
  10. D

    Allow users to choose homepage

    Hello guys, Is there any plugin that allow users to choose the page that they want to see as homepage? Let me try to explain what I'm looking for: I have a wordpress site with "SFW" posts in homepage. (/) And I have a 2nd page with "NSFW" posts. (/nsfw) What I'm looking is an option...
  11. D

    What code is this site using to disable right clicks and selection?

    Hello guys, Can someone help me grab the code that this website is using to disable right button of the mouse and text selection? http://bit.makejar.com Source Code: https://paste2.org/aIII232n Thanks :)
  12. D

    How to use "if" in this code?

    Hello guys, Maybe someone can help me. I'm using tradeexpert script in my wordpress blog. To use skimming traffic, I changed the following code in my homepage: From: <a href="<?php the_permalink() ?>" rel="bookmark" title="<?php the_title_attribute(); ?>"> To: <a...
  13. D

    How to exclude category from get_the_category?

    Hello, Can someone please give me a little help here? I need to exclude a category (ID76) from listing, but I'm too newbie to do this. I already searched for a solution but couldnt do it myself. Here's my code: <?php $categories = get_the_category(); if($categories){ ?> <div...
  14. D

    How to show image in category description

    Hello guys, Can someone please give me a little help here? So I need to show a image in my category description, I already did that but only appears the text and not the html image code. Screenshot: This is my code: <?php if(is_category()): ?> <h1 class="title...
  15. D

    How to show featured image custom post type?

    Hello guys, Can someone please give me a little help here? I need to show a custom post type feature image in my single.php. I am trying this code: <?php the_post_thumbnail('freeGallery', array('class' => 'imgthumb')); ?> But without success... It shows the post (single.php) featured image...
  16. D

    Please help me with this small php line

    Hello guys, Maybe someone can help me with this small peace of code :) I have this code: <?php echo get_field( "twitter",$modelID); ?> If I don't have anything in my "twitter" field, doesnt appear nothing. If I have something in my "twitter" field appears this code: <a href="#"...
  17. D

    Please help me with this small code

    Hello guys, Can someone please help me with this small code? <?php global $post; $args = array( 'posts_per_page' => 20, 'post_type'=> 'freeGallery', 'portfolio_cat' => 'Featured'); $myposts = get_posts( $args ); foreach( $myposts as $post ) : setup_postdata($post); ?> I have 46...
  18. D

    Witch Streaming host allow porn?

    Hello guys, Does anyone know any stream host that allows porn? I want to upload my videos and option to play in my website. Thanks!
  19. D

    Issue with www.

    Hello guys, Maybe someone can help me with this... I have a new wordpress site in a url without www. Everything works great, except a little redirection problem... If I open a new tab and write domain.com, my browser puts the www. before and than redirect to domain.com again. This is not...
  20. D

    Different language question

    Hey guys, Maybe someone can help me... I have my wordpress website in English language. Now I want to create another WordPress website but in Spanish language using the English database backup. How should I do? I was thinking: 1- do manual backups of English version home files and...
Back
Top