acchiappaprezzo
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: How to build a membership siteThere are many membership plugins for WordPress, but no single solution that works for everyone. Here’s an interesting infographic that shows the differences between the 8 top plugins:
https://chrislemacom.c.presscdn.com/wp-content/uploads/MembershipPluginComparison2014.gif
Forum: Fixing WordPress
In reply to: Site only displaying background colourIt’s a responsive slider so it’s going to change depending on the dimensions of the viewer’s browser window. I’m not sure how it was, or how you want it, so I couldn’t offer a solution.
Forum: Fixing WordPress
In reply to: Issue with underlining coding?- In your admin go to Settings -> Permalinks and click “Save Changes”
- Post your .htaccess file.
Forum: Fixing WordPress
In reply to: Some images not appearing in Media libraryCheck the permissions on your wp-content/uploads directory. Set it and all subdirectories to 777 and then try again.
Forum: Fixing WordPress
In reply to: Site only displaying background colourNO! Just delete this part:
<div style="position:absolute;left:-2000px"><a href='julialloydgeorge.comtestgis-index'>julialloydgeorge.com</a><a href='julialloydgeorge.comtestgis-map1'>sitemap</a></div>
You need the <body> tag. No idea how it got there, I would lean towards human error over being hacked since it’s not anything that would help a third party website.
Forum: Fixing WordPress
In reply to: E-Commerce Website Running Extremely SlowlyIf it was a database issue, probably. Since it’s not, it’s unlikely simply switching hosts will result in a huge improvement.
However it never hurts to try. Grab a VPS for a month, install your site and see how it performs. If it’s still slow, delete the VPS and go to my recommendation above.
By the way, if you do create the project on elance make sure that you state that average page loads must be less than 2 seconds. Don’t give them an abstract, “I want a faster website” goal.
Forum: Fixing WordPress
In reply to: insert php urlIt’s my preferred method. There are plugins to automate this, but this is how I’ve done it for years so it’s my preferred method.
The only time it’s slightly challenging is if it’s for a multisite install because you need to match up the table prefixes.
Forum: Fixing WordPress
In reply to: How To Fix Parent URL in WidgetSorry, I meant what HTML code are you putting into the text widget to produce those results?
Forum: Fixing WordPress
In reply to: PHP errorhttps://forum.whmcs.com/showthread.php?85811-cron-and-php-5-2-to-5-4-errors
Last post shows how to resolve this.
Forum: Fixing WordPress
In reply to: Site only displaying background colourThe body tag has the style position:absolute;left:-2000px. That means everything is there, just 2000 pixels to the left. You’ll need to figure out what inserted that and remove it.
If you’re not sure, post your header.php file from your theme’s directory.
Forum: Fixing WordPress
In reply to: How To Fix Parent URL in WidgetYou’ll need to post your code before anyone can assist.
Forum: Fixing WordPress
In reply to: E-Commerce Website Running Extremely SlowlyIn that case it’s going to require a developer to review your site and to find the bottleneck. It’s most likely your ecommerce plugin, but to find the cause will require tracing the latency to the source. Hit up Elance and start a fixed price project asking for bids to optimize your site. Sorry wish I could give you an easy solution.
Forum: Fixing WordPress
In reply to: funktion requerd installation problemsIn that case, change that line in index.php to this:
<?php die(getcwd()); ?>
If that doesn’t work, you may be modifying the wrong file.
Forum: Fixing WordPress
In reply to: insert php urlYou will. The easiest way is to use phpmyadmin to get a dump of your database. Then open it in a text editor and replace “localhost/wordpress” with the new website’s domain. You’ll also need to update every instance of your path.
If you’re running multisite you’ll need to update the table prefixes as well.
When it do it, it takes literally 30 seconds and then I import the database into the new site.
Forum: Fixing WordPress
In reply to: Filter Products by category in custom post typeWhoops! I left out the query:
$portfolio = new WP_Query(array( 'post_type' => 'portfolio', 'toolkit' => 'web' ) );