Juan Rangel
Forum Replies Created
-
Hey guys, client contacted me with the same issue. If you have ftp access you can go to the-events-calendar > common > src > Tribe > PUE > Checker.php you can comment out line 199
add_filter( 'upgrader_pre_download', array( Tribe__PUE__Package_Handler::instance(), 'filter_upgrader_pre_download' ), 5, 3 );
by adding to slashes like so// add_filter( 'upgrader_pre_download', array( Tribe__PUE__Package_Handler::instance(), 'filter_upgrader_pre_download' ), 5, 3 );
This code is trying to call the
Tribe__PUE__Package_Handler
class which does not exist in the new update. This class looks like it handles the plugin update. If you want to use the latest version just comment out line 199 until they release a fix.Forum: Fixing WordPress
In reply to: Nested LoopI have read through it several times. I cannot find how to keep the inner loop from duplicating its post as long as the parent loop has posts.
Forum: Themes and Templates
In reply to: Help with layout??
Forum: Fixing WordPress
In reply to: how to add theme update ?If you want to update just a few files, you should use an ftp client. I do this when updating my theme. I look at the changelog and whatever files/folders have been updated, I just over those.
Forum: Fixing WordPress
In reply to: Need Help Installing Affiliate CodeKmessinger is right, you would use a text widget and paste the html into there. If you want it on a page paste the code in html view, same applies to a post. You want to post just a link which should be easy if/when you start posting images, at times you will be to re-size the image to fit properly in your sidebar or other areas.
Forum: Fixing WordPress
In reply to: Background boxNo problem. Good luck
Forum: Fixing WordPress
In reply to: Link opens new window or tab in backgroundYou may want to pop up the player. check out something like this https://www.ads-software.com/extend/plugins/mp3-jplayer/screenshots/
Forum: Fixing WordPress
In reply to: Background boxNo problem. You will have to edit dig into your styles.css to edit the menu. Search for this and it should get you started.
.menu { }
https://www.w3schools.com/css/ <<<<<<<<<Check that site for some css help
Forum: Fixing WordPress
In reply to: Background boxYes. You would need to use
#container { background-image: url ('url link goes here') }
Forum: Fixing WordPress
In reply to: The page or post may have been moved or no longer existsSorry, that worked for me.
Forum: Fixing WordPress
In reply to: Background boxadd this to your styles.css
#container { background: white; }
You can use any color you would like.
Forum: Fixing WordPress
In reply to: The page or post may have been moved or no longer existsI had a similar problem with custom post types once. I had to refresh the permalinks. Try going to settings>permalinks>save changes.
Forum: Fixing WordPress
In reply to: Background boxwhat is your site address?
Forum: Fixing WordPress
In reply to: Link opens new window or tab in backgroundYou have to add target=”_blank” to the link.
Example<a href="https://yoursite.com" target="_blank"">New Page</a>
<a href="https://yoursite.com">Same Page</a>
Forum: Fixing WordPress
In reply to: Data base error codeI just fixed my site that was displaying the same error code. The error code was because of my update-notifier.php.
I simply overwrote it with the original rar file I had downloaded and it cleared it up.