Themes create the public (front-end) interface for a WordPress site.

learn more… | top users | synonyms

2
votes
0answers
71 views

Custom Comments - Parent / Nested Reply

I am making a custom theme and have edited comments.php, but I'm unable to get the comments to save as a reply to another comment. I have succeeded in showing the comment parent id to show as a hidden ...
2
votes
0answers
82 views

Registering Sidebars and Sidebar Widgets. Sidebar Widgets Not Displaying

I am registering sidebars and sidebar widgets. The theme currently supports two sidebars. Primary and Secondary. add_action('widgets_init', array($this, 'add_sidebars'), 10, 2); public function ...
1
vote
0answers
26 views

Is there any plan for WordPress to handle retina support for the site content?

I see from browsing Themeforest that there are many retina ( HD ready ) themes available; and WordPress itself has retina standard icons for the backend too; but what about the content, both future ...
1
vote
0answers
57 views

Single page site with history.js

I'm developing a single page site that shows each page on the front page, like so: *-----------------* | Home | ...
1
vote
0answers
44 views

HTML added to editor when deleting shortcodes in Chrome browser

Example: [shortcode1][/shortcode1] [shortcode2][/shortcode2] In the above example, using the google chrome web browser, while in visual mode in the post editor, highlight shortcode 1 by ...
1
vote
0answers
48 views

Am I not understanding plugins?

So I am trying to make it so that you can load a class from a child theme, theme or plugin using the following: class AisisCore_Loader_AutoLoader{ protected static $_instance; protected ...
1
vote
0answers
46 views

Keep sticky posts out of query unless they have featured image

I have a query running which prevents posts without various criteria from appearing, one of these is the necessity to have a featured image. Sticky posts however seem to end up in the query ...
1
vote
0answers
68 views

Theme's window.open call goes to “Page Not Found”

I have a theme that has an uploader utility that opens in a popup window from the theme options page. Basically I have a button labeled "Upload" which has an onclick handler that calls window.open to ...
1
vote
0answers
41 views

Trackbacks not displaying

I'm building a new theme and I'm just working through the Theme Unit Test requirements in the Codex. I'm stuck on the Many Trackbacks test. My theme doesn't show any Trackbacks but for the test post ...
1
vote
0answers
53 views

gallery option is not available in media upload box in costum theme option page

Hi everyone I am creating a theme in which I have to created a sponsor upload image gallery on the admin panel in theme option page and its slide show on the front panel for this I follow tutorial to ...
1
vote
0answers
99 views

Page as a child of a Custom Post Type

I have a custom post type called "Professions", it contains different professions and info about them. To show them I simply use a content-profession.php -file. The thing is that I need subpages ...
1
vote
0answers
127 views

Nested comments in WordPress theme

I'm creating own theme to WordPress. Got problem with nested comments. I have enabled option in admin panel for two levels. And what next? I've read a lot of net articles but nothing helpful. I want ...
0
votes
0answers
7 views

Extended image control not showing up in theme customizer

I have an extended image control for the theme customizer that adds in an extra panel and lists images I have hardcoded into the extended control. Now the issue is that it is not showing up in the ...
0
votes
0answers
29 views

Custom widgets in theme option page

I'm trying to create a simple theme options page that uses widgets to change the layout of content on the front page. I started off by using meta boxes not realizing that the position is based on ...
0
votes
0answers
20 views

How to get dynamic data in page hierarchy?

I'm trying to mimic the page hierarchy rules of WP. I'm checking for the existence of certain files, then requiring them if they exist -- in the same order as I understand the hierarchy rules. Here's ...
0
votes
0answers
11 views

How to utilize theme customizer live preview in this situation?

Short version: I am using the theme customizer in my theme and javascript for the live preview. I am not sure how to implement the javascript for php(as seen in code excerpt). I am creating a theme ...
0
votes
0answers
10 views

How to export/import theme customizer settings?

I am wondering if it is possible to export theme customizer settings(theme_mods) to be imported into another install of the same theme. I know that the settings are saved into the database so I am ...
0
votes
0answers
37 views

Does wordpress add their own classes into nav menus?

I am building a theme and have noticed that when I create a menu with just html or have it dynamically add menu items based on pages it looks how it was meant to be. Although when I change the code to ...
0
votes
0answers
19 views

How to disable controls in theme customizer?

Edit: I have rewritten the question in hopes I will get a reply from someone who knows the theme customizer. I am trying to figure out how to disable setting controls in the Wordpress theme ...
0
votes
0answers
22 views

comments_popup_link(); isn't working for some reason

I'm trying to get comments_popup_link(); to work in my theme, but it isn't. I honestly see no reason why it shouldn't. The relevant part of my code: <div class="row"> <div class="span7 ...
0
votes
0answers
34 views

Wordpress causing all code to be displayed on line 1. Receiving multiple errors after cleaning cookies and cache

I have been working on a theme for a few days and when I realized my JS file for my theme customizer wasn't updating I decided to clear the cookies and cache, and wow that was problematic. As soon as ...
0
votes
0answers
11 views

If user removes section with theme customizer I want it to add padding to footer

I added the ability to the theme customizer for the user to remove a section that is above the footer. The issue is when the section is removed it is causing the links in my footer to move up. How ...
0
votes
0answers
25 views

Problem with function not executing

I am sorry for the long post but I wanted to be thourough in hopes someone could help me figure out this issue. I have been trying to get it working for 2 days with no such luck. I would appreciate ...
0
votes
0answers
30 views

Use Jetpack Infinite-Scroll in search and category pages

I like Jetpack's infinite scroll a lot and would like to use it on the search-page and category-pages as well. Is that somehow possible and if yes, how?
0
votes
0answers
26 views

How do I link a button I created in theme customizer to a function?

I created a button in the theme customizer and I want to use it to execute a function? All I can find is using controls to add theme settings such as CSS and text. Although this button is to clear out ...
0
votes
0answers
32 views

Created custom control from theme customizer, where should I add code it will control?

I have created a custom control for the theme customizer which is a simple button and label. I am going to be using it as a theme reset button that will clear the theme mod settings to their original ...
0
votes
0answers
14 views

Widgets input/content not visible

I created a theme, and when I drag and drop a widget in the widgets area the widget's content is hidden. This is what I attempted: Switch with other theme and activate my theme (doesn't work) copy ...
0
votes
0answers
24 views

Adding custom widgets to theme sidebar on activation

I have a custom widget in my theme with the id of "widget_my_box_menu" and I'm trying to add that widget to my theme's main sidebar on theme activation. The main sidebar's id is "home-sidebar-widget" ...
0
votes
0answers
44 views

Post archives link yields a 404 Not Found

I'm writing my own WordPress theme and I'm having problems with the archive page. My archive link yields a 404 Not Found. I get this link from get_post_type_archive_link("post") and it just adds ...
0
votes
0answers
67 views

Make Add media button accessible to all in front end

I am trying to add an interface in which any user(including non logged in) can create a post from the front-end. I am able to bring the default wordpress editor to front-end using the wp_editor ...
0
votes
0answers
61 views

Post thumbnail to append post content via ajax click event

I've searched hi and dry, tried various tutorials but I just cant get anything to work and its been a good 3 weeks now :( I have a loop that displays custom post thumbnails in a grid using this ...
0
votes
0answers
63 views

Call to undefined function add_menu_page() on theme activation

I am attempting to activate a theme that works perfectly on one WordPress install. I have matched the plugins installed up and copied the theme over but when I go to activate it I get... Fatal ...
0
votes
0answers
30 views

How to add demo content to theme from outside plugin

I am devloping a new Wordpress theme that requires the installation of an outside plugin, called Revolution Slider. I would like to create a set of demo slider images for the user upon theme ...
0
votes
0answers
33 views

Theme doesn't show sidebar

A strange thing has happened. I've uploaded my theme (that worked perfectly before and still works prefect on my local server) and there are some issues. First it couldn't load prettyPhoto files and I ...
0
votes
0answers
29 views

Archive Listing Page Theme

I am working on a wordpress template that needs a 'special' category listing page. First of all, the page kinda needs to look like this: http://quicksnaildesign.com/example-closed.jpg When you ...
0
votes
0answers
20 views

Adding new Settings Field to Appearence -> Menus using the Settigns API

I would like to add a 3rd text field to the admin page for custom menus called "Link Description" beneath the Navigation Label and Title Attribute Fields. I know that I need to use the ...
0
votes
0answers
21 views

Problem with Image Test before theme submission to WordPress.org

I tried to submit a theme to wordpress.org and I got a response that the theme was not approved because it failed an "Image Test". Image Test: Wide Image, Resized In Editor should be resized in ...
0
votes
0answers
25 views

Theme Options, Check box not unchanging

Every Option in my theme option will save, weather you enter text, delete text, click a radio box or even check box. How ever, once check boxes are clicked they do not seem to un-check. I have ...
0
votes
0answers
28 views

Change Image Sizes for Mobile Theme

I've got a small challenge, right now I have an existing blog with images that formatted for desktop. I have a mobile child theme that shows the content for mobile. Is there a method to filter a ...
0
votes
0answers
35 views

Change The Meta-Description Of Home-Page?

I would like to use this script (found here), but it generates a blank page when I add it to my header.php if ( is_home() ) { ?> <meta name="description" content="Your home page meta ...
0
votes
0answers
36 views

How to Use Theme Customizer settings for Colors in a Custom Theme?

I've been reading up on the Theme Customizer so I can create a backed for the Custom theme I am building. Based on the tutorials I have read, I understand how to enable the customizer, create new ...
0
votes
0answers
37 views

Trying to understand the action: save_post and an incomplete $post object

I begin with a fresh post (i.e., add New). I fetch (via Ajax) an image (read: src) from another site. In the process of saving (action: save_post) I want to PHP copy() the image to my local server and ...
0
votes
0answers
29 views

including custom template into template and changing parts of it through cms

I made my custom template for front page but now I want to make front page to include some other custom templates, for instance, a template which contains three columns and below that a gallery. I ...
0
votes
0answers
66 views

display widget plugin: check active widget

I want to check if how many widgets are active on current page, as I am using display widgets plugin so is_active_sidebar() will not work here. Please have a look at plugin code and tell me which ...
0
votes
0answers
51 views

How to set the position of the default custom-background?

i'm creating a theme with the possibility for a custom-background. i have set a default background and color with: $args = array('default-color' => '000000', 'default-image' => THEMEPATH . ...
0
votes
0answers
11 views

Visual Editor: format pulldown not displaying in theme font

I've successfully applied editor-style.css to the visual editor post content in our custom theme. It now successfully uses our font, size, etc. This works for that: ...
0
votes
0answers
30 views

Columnist Theme Front Page

I downloaded a theme, The Columnist Theme, which has a very specific design. I assume that the front page has a template where I can dub over with my info, however I do not know where to access the ...
0
votes
0answers
40 views

Change default pagination style in wordpress

I am beginner in WordPress and started to learn it. I am designing a new child theme from an existing parent theme. The Pagination of Home page in parent « Previous 1 2 3 Next » But I ...
0
votes
0answers
236 views

customizer.php redirects to login page

I am trying to access the customizer (WP 3.4) via the frontend (no wp-admin/customizer.php). I need this for a wordpress multisite installation where the individual site owners don't have access to ...
-1
votes
0answers
30 views

Wrong Page Title in h1 output, Strange Breadcrumbs

I use Wordpress 3.5.1 . In origin I have used this template: http://html5blank.com/ . Now, after modifications, I have a problem. I use WooCommerce Plugin. Q : in h1 (<h1><?php the_title(); ...

1 2 3