widelegger
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Designing!Premium themes are not supported by this forum so find a popular theme here at www.ads-software.com so you’ll know there will be a few people in this forum who are familiar with it besides the theme’s developer. Find a theme that has the general features you want. Then use the free theme as a parent theme that you then customize with your own child theme. Good luck!
Forum: Themes and Templates
In reply to: How secrure are atristeer templates?The Artisteer theme is a premium theme and you presumably purchased support from Artisteer when you bought the theme. I suggest you contact Artisteer for support with your theme. This forum does not provide support for premium themes such as Artisteer.
Forum: Plugins
In reply to: A plugin to display my monthly archive of pagesAnother way to organize Pages is to assign them to a parent Page using the Page Attributes option box in the editor. Try looking for plugins in the www.ads-software.com plugin repository:
Forum: Localhost Installs
In reply to: Can't access dashboardIf you can see a WordPress site at https://localhost/wordpress/ then your local webserver and database are already running. Sites you develop locally on your desktop computer will run under the default host name “localhost”. This is a standard practice for developing local websites that run on just your desktop. To see the navigation bar across the top, you need to be logged in to your WordPress. Anonymous visitors to your site will not ever see that navigation bar. Your login page is probably at https://localhost/wordpress/wp-admin .
Forum: Hacks
In reply to: Set company details via the admin panel?You are on the right track. You’ll want to use the “WordPress Settings API” to store your plugin’s settings in your database. WordPress has some documentation on the API and there are some tutorials on the internet too.
Forum: Fixing WordPress
In reply to: wordpress network name included in emailI recommend you contact eleganthemes for assistance with your MyCuisine theme. The contact form in the MyCuisine theme may not fully support multisite. You might find some documentation or a support forum at elegantthemes.
Forum: Plugins
In reply to: I need to identify a pluginGood luck! Looking at the CSS classes on those images tiles, I would bet the WP-pretty-photo plugin or one of the Nivo Slider plugins.
Forum: Hacks
In reply to: Set company details via the admin panel?You might find what you want in the www.ads-software.com plugin repository:
https://www.ads-software.com/extend/plugins/What you describe is very specific yet basic, so you might consider simply writing the plugin yourself:
https://codex.www.ads-software.com/Writing_a_PluginForum: Hacks
In reply to: Code something only for admin ?Here you go:
if (is_user_logged_in() && is_admin() ){ // here do something for the logged in admin... } elseif ( is_user_logged_in() ) { // here do something for everyone else who is logged in... }
These are just a couple native WordPress functions you can use in your own code:
Forum: Fixing WordPress
In reply to: Warning and Failled Upload of MediaIn your html source you should inspect the paths of the images in your
<div id="nivo_slider" class="nivoSlider">
and you will see that those images are not rendering because of a php error being caused by your theme.https://markmaunder.com/2011/08/01/zero-day-vulnerability-in-many-wordpress-themes/
Forum: Fixing WordPress
In reply to: site is slowIt depends. The problem might be your webhost or might be how you’ve configured your WordPress. Below are some tips for speeding up a site:
WordPress Optimization:
https://codex.www.ads-software.com/WordPress_Optimization/WordPress_PerformanceYSlow Performance Rules:
https://developer.yahoo.com/performance/rules.htmlForum: Networking WordPress
In reply to: Suscription ConfusionIt sounds like you are using a widget for handling the subscriptions. Are you using the FeedBurner Subscription Widget plugin or similar, and is it configured properly? Handling subscriptions via email is not a core Multisite or WordPress feature as far as I know.
Forum: Networking WordPress
In reply to: Create programmatically a page for multiple blogs at onceYou might look at the Diamond MultiSite Widgets plugin. It has a “broadcast” widget it can add to the editor which lets you selectively copy the Page or Post to the other blogs in your network. It doesn’t auto-copy the content, but maybe that is ok for you.
https://www.ads-software.com/extend/plugins/diamond-multisite-widgets/
Forum: Fixing WordPress
In reply to: wordpress network name included in emailWhat is the name of the plugin you are using to handle the contact form?
Forum: Fixing WordPress
In reply to: Next page errorYour theme may have a problem. Which theme are you using? Can you duplicate the problem using the default Twenty Eleven theme?