Search Results for 'install'

Results from the Forum
Radu
tagDiv Staff

Hello,

From your last thread it seems that the theme is not uplaoded compleatly. It gives missing files errors in the error log and that is not good.

I’ve tested the shortcodes on our install and it should not appear, just as in V2.

Reupload the theme and it should fix it.

I will have a look at the speedbooster plugin + Disqus today also.

julingn
Participant
#0

Hi,

version 3.0 looks great. I love the theme panel.

Three Questions:
1.) Where do I find the speedbooster plugin? Its not downloadable via “install plugins”.
2.) ADS: sidebar ads (300×250 google adsense) are not displayed at all AND Header ad is not shrinking on smaller devices. Am I missing someting here?
3.) Lightbox for featured images is working fine. But all images added via visual composer are opening not in a lightbox. Can you recommend a plugin or tell me how to be able to use your lightbox also with inarticle images?

My page: http://www.brettspiele-magazin.de

Cheers,
Norman

Marius
tagDiv Staff

Hello,
At this moment the theme work and use featured images or video as thumbnail. There is some plugin that take first image or video from the post and use as thumbnail.

Install Auto Post Thumbnail plugin, this will get the first image from post as featured images http://screencast.com/t/p4a5mnihbP3

For video thumbnails instal Video Thumbnails plugin http://screencast.com/t/K2TZ5umY

We will make a solution built in for this. We have to analyze this in details how should work.

Thanks for the message!

simchris
tagDiv Member

@adgower
I think the query is for using web-safe fonts which don’t load remotely off Google’s CDN.

Some of us wish to use only web-safe fonts for faster page load, and not having to load “fancy fonts” from Google which can be tricky to optimize for PageSpeed Insights.

This is typically the reason for wanting Arial/Verdana, and/or Georgia, Seghoe UI, Trebuchet, etc.

I’m waiting for 3.01 to install, personally, so don’t have any specific advice on how to customize the fonts to web-safe, although that was on Radu’s confirmed ‘to do’ list.

andrei_stefan
Participant
#0

Hello guys,

After I installed the update, the search box from the header stopped working.
What can I do?

Thanks!

anastasios
Participant
#0

Congratulations and thank you for V3!

After I installed the new version everything was fine until editors and authors (not admin users) tried to upload an image or add a tag. The buttons “add media” and “add” tag do not do anything when clicked.

We tried to deactivate the plugins as well but it still did not work. We have a multisite install and the other subdomains that use a different theme seem to work fine.

I will really appreciate it if you happen to have any idea on this… did anybody else face a similar problem?

Thank you so much in advance!

adgower
tagDiv Member

Do you have the speedbooster plugin installed? If so try deleting it.

adgower
tagDiv Member

Sweet! Works great for me. Seems to load fine.

Check to see if you have the speed booster plugin installed? If so try removing it and then see if it works. Tell me if this fixes the problem please =)

Now need to figure out how to get rid of the ugly black bar across the top of the screen… that shows all the login information.

FKSA
Participant
#0

Hi,
Alert:
After the upgrade theme (Newspaper 3.0)
Problem with “WP Image Borders” plugin.

Fatal error: Cannot redeclare mw_enqueue_color_picker() (previously declared in /home1/fksanet/public_html/wp-content/themes/Newspaper/wp-admin/panel/td_panel_start.php:44) in /home1/fksanet/public_html/wp-content/plugins/wp-image-borders/wp-image-borders.php on line 251

Thanks for the upgrade

adgower
tagDiv Member

Also I did not have the speedboost add-on installed.

Thanks,
Alex

risq
tagDiv Member

Strange bug – I have updated to V3 on my dev site and forums still show, but Buddypress Sidebar bug is still there.

Out of interest, did you install the Speedboost Add-on? If you did, disable it and test again. It broke my site so I removed it.

adgower
tagDiv Member

It is there bout to install.

simchris
tagDiv Member

Make sure you’re not in “compatibility mode” in IE10/11 for your website. That mucks with all sorts of things, I found. May not be the issue, but it broke all sorts of things for me. And, if your host uses mod_pagespeed or if you’re using caching be sure to “disallow” your wp-admin and themes folder from being “optimized” or “modified” as that can also break stuff. Mine still works, so usually good idea to backtrack on any new plugin installed which inserts any hooks into the page posts/admin (like a form manager, etc.). Some plugins don’t create unique IDs for their “hooks” and then this breaks other plugins.

webmaster808
tagDiv Member

The get_author_box() function is what Newspaper uses to display Author info on the front end. This function takes a single user ID and generates everything from that. After a quick glance at the code it looks like what needs to be done is to convert the output of the Co-Authors plugin to an array of IDs so that we can iterate over it to get the get_author_box() function to create the boxes using the Author IDs:

First, you would need something like this(assuming you have the Co-Authors Plus plugin installed) in the functions.php:

if(function_exists('coauthors')){

	$coauthor_names = coauthors( null, null, null, null, false );
	$user_ids = array();

	function coauthor_names_to_ids(){
		$names = explode(' ', $coauthor_names);

		foreach($names as $name){
			// We would probably need to add another function here to make sure that the $name matches any one of our authors slugs and then if $name == 'author-slug' then we could procede to get the ID and add it to the $user_IDs array so that we only have an array of valid IDs.
			$user = get_user_by( 'slug', wptexturixe($name));
			$user_ids[] .= $user->ID;
		}
		return $user_ids;
	}
coauthor_names_to_ids();
}

And then all you would have to do get them to appear on the front end (in td_module_1 for example) is something like this:

//Iterates through the user ids
foreach($user_ids as $coauthor_id){
	//creates an author box for each of the coauthor ids
	$buffy .= get_author_box($coauthor_id);
}

I haven’t debugged this code, some work would probably need to be done to make sure the exploded $names array matches slugs properly but it appears to be one way to tackle the problem. Another would be to modify the Co-Authors plugin to be able to return the co-author IDs as well as links. I suppose you could also modify the get_author_box() function to accept the author name as an argument…

  • This reply was modified 12 years by webmaster808. Reason: Forgot to call the function!
lucioluci
tagDiv Member

Yes, but i turned off the WP User Avatar plugin, the gravatar option in discussion option page is ON, but now i can’t see the gravatars of the authors that have one configured, like in this page http://www.questeistituzioni.it/author/federico-stoppa
seems like the theme function doesn’t work after installing and turning off the WP User avatar plugin 🙁

Marius
tagDiv Staff

Hello,
You can go here in Appearance -> Install plugins http://screencast.com/t/sm8rFcwxkBEK and install it from there

Thanks!

anastasios
Participant
#0

Hello!

I just purchased the theme a few days ago and I like it a lot. As I am installing it on multisite and I would like to use the same settings across many sites it would be easy if there is an “import settings” option.

I am sorry if I have missed it somehow but I couldn’t find it. Can you please let me know if this is possible or how I could do it?

Thank you!

simchris
tagDiv Member

You can select in the composer when building your home page:
http://import.tagdiv.com/newspaper/doc/#homepage

I believe the theme will ask you to install plugins when you first launch the theme admin panel, if you don’t already have the revolution plugin installed.

If you skipped the “please install plugins” message, I think you can still manually install the plugin from:
/Magazin/includes/plugins/revslider.zip

Hope that helped. 🙂

lucioluci
Participant
#0

Hello!
I made this site http://www.questeistituzioni.it
we have lots of people writing in it, some of their not so young in order to configure thier gravatar pic so i installed “WP User Avatar” plugin in order to upload myself their profile pic.
But… now gravatar doesnt’t work, as i can’t see the images i uploaded by the plugin.
I want to make the plugin work or to restore the theme functionality (i have overwritten via ftp the original theme but situation didn’t change)
May u help me?
thank you!
Lucio

trieuthanhtuan
tagDiv Member

Hello Marius,
I can not install the update theme using FileZilla. My I delete the old theme in my public_html folder in hosting account and add the new update of the theme?
Thanks

aedney
Participant
#0

hi guys

I have installed Newspaper to my existing site and I have run the regenerate thumbnail tool, however, the featured image is not showing correctly.

The site is: http://connecteddigitalhome.com and two examples are:

Erratum Dragon Ball Z: Battle of Z for PS Vita
K’NEX Titanfall Building Sets shown at Toy Fair 2014

Any ideas?

all the best

Andrew

creactivate
Participant
Speed - topic
#0

Hi,

I bought this theme because i was impressed by the PageSpeedInsights. However, after doing a fresh install of WordPress and the Newspaper theme (with just the Demo content) I only get 65/100 | 75/100.

I didn’t expect 95+ but these numbers are not much different from other themes I’ve used. What am I missing here?

thanks

simchris
tagDiv Member

Best bet is to
First check your wp-config and htaccess to see if something got “munched” there.

1) make a backup of your dbase from phpmyadmin from hosting account
2) make backup of WP data from your wp admin panel if you can login; and backup your wp-config.php and .htaccess file if you use one for permalinks.
3) turn off all plugins
4) turn off the Newspaper theme; go back to default “twenty-something”
5) reinstall wordpress via FTP proper way; re-upload theme files via FTP
6) make sure site works with default theme
7) preview newspaper theme
8) activate theme; turn on only “required” plugins

It sounds like you have something broken unrelated to theme.
Also check your permission on whether the ftp owner or Apache ‘owns’ your content, as this can cause major headaches, and I’ve found having your WP install ‘owned’ by Apache/server just doesn’t work properly. This is something to check with your hosting provider, or via your hosting account site panel for the file viewer which will show “owner” for each folder in your root public folder.

Hope that helped. Often best to ‘clean house’ when you’re having problems you can’t trace back to any one thing.

  • This reply was modified 12 years by simchris.
trandestined
Participant
#0

I have just upgraded my hosting plan last night to migrate from a shared Pro plan with BlueHost to a VPS Enhanced Plan. After the migration the site will only pull up a blank white screen. After speaking with the hosting company, we disabled the Newspaper theme, and enabled a default theme just so I could get to the backend of wordpress. I tried deleting the theme altogether so that I could reinstall it. That did not work, right after I installed it I got the same blank white screen.

The site was working fine before migrating it, now it doesn’t. They need me to find out what the exact Server Requirements are needed for this theme to work properly. I am in need of getting this issue resolve ASAP as my site is pretty much crippled right now.

The site works fine with the default theme 2012, but obviously is a jumbled mess because of the code and shortcode used for this theme specifically.

PLEASE Help me so I can get my beautiful site back up and running!
thanks
Kent

dreamermagazine
Participant
#0

Hello,
I have this problem – after installing the the demo posts are without sidebar. I made a page with visual composer with right sidebar and from static home page in customizer i connect it with the post, but there is no effect. Where is my mistake?
Thank you.

http://dreamermagazine.com/

Viewing 25 results - 35,576 through 35,600 (of 35,820 total)