Digest WP
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: SliderHello,
Not sure if you are trying to avoid premium plugins but this one will do everything you need and I use it a lot.
https://codecanyon.net/item/royalslider-touchenabled-jquery-image-gallery/461126?ref=Semenov
Forum: Developing with WordPress
In reply to: wp-login.php blank pageHey, No problem glad I could help!
Forum: Themes and Templates
In reply to: Side Bar phpHello,
Have you tried going to Appearance>Widgets
Then add a text widget and paste in the HTML and see if that works.
Forum: Themes and Templates
In reply to: How to change header image(theme Magazinum)Hello,
This might help you. https://www.wpzoom.com/documentation/magazinum/#background
It is documentation and shows how to change the background image and logo image.
Forum: Themes and Templates
In reply to: How do you change the menu bar color on the twenty eleven theme?Hello,
With the Twenty Ten theme you must open the CSS file style.css
And then add the correct background color to #access {}
You will have to remove the gradient too or you can just change the hex values on them all.
Forum: Themes and Templates
In reply to: Custom post type posts per page?Hello,
You should check into the codex.
$post_count
The number of posts being displayed.So something like this
$args = array(‘post_type’ => ‘<your custom post type name>’,
‘posts_per_page’ => 5,
‘tax_query’ => array(
array(
‘taxonomy’ => ‘<your custom taxonomy name>’,
‘field’ => ‘slug’,
‘terms’ => ‘event-england’
)
)
)$query = new WP_Query($args)
Hello,
It is good to know PHP or enough about WordPress templates to start messing around but.
In the left menu bar in the admin click Appearance>Editor then in the right hand side find the loop.php
Look for this code
<span class=”cat-links”>
<?php printf( __( ‘<span class=”%1$s”>Posted in</span> %2$s’, ‘brunelleschi’ ), ‘entry-utility-prep entry-utility-prep-cat-links’, get_the_category_list( ‘, ‘ ) ); ?>
</span>And remove where it says Posted in
Forum: Themes and Templates
In reply to: Theme Graphene Slider not workingHello,
Did you test to see if it showed with the default home page? If it does show when you do that then you may need to add a shortcode or an include into the template.
Forum: Everything else WordPress
In reply to: Look for a pluginHello,
You should try a combo of some plugins since you are kinda new to WP.
To add member uploads for pictures
A plugin for the likes and dislikes to be edited
Then customize it from there. Not sure if you have tried them already or are familiar but good luck.
Forum: Everything else WordPress
In reply to: Yahoo ads on WPHello,
Try the Google Adsense WordPress plugin
Forum: Themes and Templates
In reply to: Theme Graphene Slider not workingHello,
Is the theme home page set to a static home page or the default home page?
Forum: Developing with WordPress
In reply to: wp-login.php blank pageHello Rmason26
Try removing the only wire book mark plugin from your FTP. It seems to be causing the issue.
Forum: Fixing WordPress
In reply to: HELP ME PLEASE!!: Posts vs. PagesAh okay. Yea the best way would be to make a Parent category named Venues or something. Then 3 sub categories with Local, Pretty close, and farther away.
Then make that page an archive page.
Hope that helps
Forum: Fixing WordPress
In reply to: Help to change a link on the Home Page!!!What are you trying to change it to? It may require some code knowledge
Forum: Fixing WordPress
In reply to: Site URL Redirecting to example.com:8888Hello,
Have you tried in Settings>General in the Wp dashboard? May just need to change those links.
If not try looking at the .htaccess file and see if its pointing to the wrong domain.