Your Wordpress problems - Tell me ;-)

Header and the footer of the widget? Did you follow the setup instruction to that widget?
I guess you will have to configure it properly before it shows up. Try configuring through Appearance -> Widgets.

If this plugin / snippet is available publicly, then give me the link where I can download it. I will try installing it on my localhost. :)
G0g0l you're a hero buddy,
But I can only see the header and footer, the content is blank
 
OK I will try configuring it, I'm really thankful to you for helping mate. :)

Edit:
I uploaded the theme but it's not showing sidebars, slideshow etc instead of header & footer only.
 
Last edited:
Hello

Someone would like to help me how can i make my wordpress homepage default subscribe page ?

Example:
I want to show

Name:
Email:

Subscribe Button


that's it


thanks
 
To change the homepage to a static page:
In your admin, go to Settings > Reading > front page displays > click 'a static page (select below)', then pick the page you want to appear as your home page.
 
thanks for the upload, however divi and nexus links are uploaded as fable.
 
Hey thanks for the notification. I can't edit that post anymore, so I have requested a moderator to do the same. Here's the download links for those two themes ( VT is the same as previous) anyway.
Divi:
Code:
http://www.mediafire.com/download/1b8xucruylhognc/Divi.zip

Nexus:

Code:
http://www.mediafire.com/download/dqn5csop5t4baok/Nexus.zip


thanks for the upload, however divi and nexus links are uploaded as fable.
 
That's easy.

Inside your theme folder, make a new file called subscribe-template.php

On the top of the file write the following:

Code:
<?php
/* Template Name: Subscribe Homepage */
?>
Now add whatever html you want to and save the file.

After that, login to your wp-admin and then, go to Pages->add new.
In the edit screen, look for the Page Attributes in the right sidebar. There, change the template from Default Template, to Subscribe Homepage.Enter a title for your page, and save the page.

After doing that, go to Settings -> Reading and change the "Front Page Displays" value to static page and select the newly made page and save.

After doing that, go to Appearance -> Menu and make sure your newly made page is not added to the navigation. If added, delete it (if you don't want that page in your navigation).

That's it. Now you can do whatever you like to do with the page. You can even use custom PHP if you would like, ( but not recommended).
Hello

Someone would like to help me how can i make my wordpress homepage default subscribe page ?

Example:
I want to show

Name:
Email:

Subscribe Button


that's it


thanks
 
This is a good post-count thread. I should start one, too... #OPwants6redstars
 
I take that as a compliment. At-least not spamming in other threads to increase post count. It's good to help people as I find. I don't need those stars btw.
This is a good post-count thread. I should start one, too... #OPwants6redstars
 
It is a compliment. You're adding some value, while rapidly increasing your post-count. I commend you on your efforts. It's inspired me. :)
 
Hi g0g0l, I want to thank you for your help, u r great guy and this thread is awesome!
what I wanted to ask is how can I check is everything okay with my sites SEO, cause google is not indexing it very well, and whole indexing process is slow.. I think. This is my website kolacici. net. Btw I am using headspace plugin, what is your opinion on that plugin?
 
Hey dude, thanks for the kind words. Well this is not really a WP related problem but let me try to answer you as well as I can. I am not a SEO guy though :p

I hope you have added your site to the Web Masters Tools. If you did that, then it will be easy to get the site indexed quickly. Firstly, I would recommend you to add a sitemap if you haven't done so.

To get a page indexed in no time, go to your WMT -> your site -> Click on Crawl on the left sidebar -> Click on "Fetch As Google".

Enter the url you want to fetch -> Click on Submit To Index button and submit all the linked pages. Your new page will get indexed within 10 seconds.

Hope that helps.
Btw, for SEO plugin, use WordPress SEO (yoast SEO). That's the best IMO .
Hi g0g0l, I want to thank you for your help, u r great guy and this thread is awesome!
what I wanted to ask is how can I check is everything okay with my sites SEO, cause google is not indexing it very well, and whole indexing process is slow.. I think. This is my website kolacici. net. Btw I am using headspace plugin, what is your opinion on that plugin?
 
awesome share man
thanks for that bundle of themes
was looking for something similar
 
I have one more question, I am thankful for ur last answer, it helped allot.
I want to add google adsense code into my post, and I dont know how to do that. I read somewhere that I can do that in single. php but I dont rly know how to do that..


I wouldshare single. php but I am not allowed to do that here.. :( so if u could tell me where to add my google adsense code and how to make it align right =)
 
I have one more question, I am thankful for ur last answer, it helped allot.
I want to add google adsense code into my post, and I dont know how to do that. I read somewhere that I can do that in single. php but I dont rly know how to do that..


I wouldshare single. php but I am not allowed to do that here.. :( so if u could tell me where to add my google adsense code and how to make it align right =)

Easiest way is just to stick it directly in your post. Click the "Text" tab in your content box, and just paste the HTML right where you want it in the post.

Wrap it in div tags like this to make it align right:
Code:
<div style="float: right;">
// Adsense Code
</div>

It's a very bad way of doing things, code-wise, in my opinion, but it should work.

Alternatively, you can install a plugin like this: http://wordpress.org/plugins/quick-adsense/

Finally, you can make a shortcode for yourself. Add this to your functions.php:

Code:
function adsenseShortcode() { ?>
<div style="float: right;">
// Adsense Code
</div>
<?php }
add_shortcode('adshort', 'adsenseShortcode');

Now, you just need to add the [adshort] shortcode wherever you want the ads to appear in your post.
 
Last edited:
can you please recommend me a theme that is something like megashare.info ? just plain and simple grid of movies and a click to play page
I have been searching for similar theme for movie niche but they don't have what I was looking for =(
 
Have you tried out DeTube?
Code:
http://themeforest.net/item/detube-professional-video-wordpress-theme/2664497

Another good theme is "premiere".
Code:
http://themeforest.net/item/premiere/4140795

can you please recommend me a theme that is something like megashare.info ? just plain and simple grid of movies and a click to play page
I have been searching for similar theme for movie niche but they don't have what I was looking for =(
 
Back
Top