The customization tag has no wiki summary.
0
votes
0answers
31 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 ...
-1
votes
0answers
24 views
theme options panel [closed]
plz i need help to create simple options for a theme
this an example :
in theme i have this code
<div id="ticker-wrapper" class="no-js">
<ul id="js-news" class="js-hidden">
<?php ...
1
vote
1answer
36 views
List of all theme customizer control types?
I have been looking through the theme customization API documentation and google to simply find out the names of the control types already built in to the theme customizer.
More specifically I am ...
0
votes
1answer
38 views
How to add button to top of theme customizer?
I am trying to figure out how exactly I can add a button to the top of the theme customizer. The spot I am talking about is where the "close" and "save" buttons are. The ones that are above everything ...
0
votes
0answers
14 views
Create a generic post type and define its metadata via another one used for categorization
Ok, I would like to share with you an idea I had and ask you what do you think about it and possible drawbacks I'm not able to forsee.
I'm building a database for an association with many kind of ...
0
votes
0answers
59 views
Custom query on Wordpress custom table
I am working with a custom table where some values will be inserted or updated if they already exists, I have checked and rechecked the syntax and it seems to be working fine, if I run the same query ...
1
vote
0answers
45 views
Rewriting single post url; add_rewrite_rule problem?
I have to customize single post permalink (the structure of the permalink) if posts have a certain value in a certain custom fields.
I use the filter post_link to change permalink when needed, and ...
0
votes
0answers
33 views
How can I clear the theme mod settings?
Ideally I am looking to add a button to the theme customizer that allows the theme to reset to default settings, although that may be asking for too much in one question so I am wonder if anyone knows ...
0
votes
1answer
38 views
Custom <blockquote> HTML markup
In Wordpress, I would like to add a custom styling to the <blockquote> elements, replacing Wordpress' default usage by using a function (or however is easiest).
When using the WYSIWYG editor, ...
0
votes
2answers
38 views
Best way to achieve multiple links in a post title
Usually I would get a post title no problem, however now I need to achieve something like this:
The Example is written for this title
As you can see two words are links in the title, another ...
0
votes
1answer
39 views
Adding a custom post type meta field to rss
So I added my videos custom post type to my rss feed via this code.
//Add videos custom post type
function myfeed_request($qv) {
if (isset($qv['feed']) && !isset($qv['post_type']))
...
0
votes
1answer
23 views
Using common slider in all sites
I have created one main site and 100 multi-sites. But, I am facing one issue. I want to use a common slider for all sites, meaning that I can control and edit from main site.
How to update something ...
-1
votes
1answer
49 views
Consolidate 'add-to-cart' buttons into one 'add-all-to-cart' button
What I am trying to achieve is to have one add-to-cart button that will add the selected quantity of multiple products, featured on the catalog page, into the basket.
Here is an image of what I aim ...
0
votes
1answer
36 views
customize wordpress database error page
UPDATE
Initially I suspected this was related to the Wordpress framework I'm using (Genesis) or to my child theme functionality, but turns out that's not the case as I was able to get this to work in ...
0
votes
0answers
47 views
Special Query: Title, Terms, Content - %LIKE%
I'm working on a them theme that is search-heavy, and my users are putting huge priority on an improved search function.
I think I will have to use a special direct query to search these things:
...
2
votes
1answer
156 views
I need some direction on how to have a sidebar based on meta rather than page
I'm working on a plugin that allows the user to create "page/post types", customize the type style, then tag a page/post with that type. All of this works. My problem is this plugin also needs to ...
-1
votes
1answer
68 views
How I can change PayPal IPN 'custom' field in woocommerce?
I use Woocommerce plugin. All works great, but I need add to PayPal IPN 'custom' field only 1 word instead "order_id" that writes at 'custom' field now.
I trying edit this file:
...
0
votes
0answers
17 views
Need guidance editing template code [closed]
Here's my site:
http://www.griffinmovies.com/
I used the original "Hero" template found here: http://themetrust.com/themes/hero
It look me a while, but I figured out how to edit most aspects of my ...
0
votes
1answer
39 views
Why does modifying my functions.php file always result in a server error
Basically, every time I modify my functions.php file and reload it to the server my site "breaks" and nothing loads. As soon as I delete it, it starts working again. Now before anyone freaks out, I ...
0
votes
0answers
51 views
How do I call a custom template for specific Product category and all ancestors in WooCommerce?
I am very new to WooCommerce and Wordpress. I am currently creating a website using both and I'm having trouble assigning a custom template to a specific category and all its ancestor categories.
I ...
0
votes
1answer
117 views
Post visibility option to theme front-end for author to select?
Is it possible to present author with an option to select visibility of a post (public, private, password) on theme front-end post adding without messing with Wordpress core?
Any suggestions are ...
0
votes
0answers
25 views
Get Related Posts (custom post type) of Custom Taxonomy, Most to Least?
I'm working on an image page feature which retrieves the MOST related posts ("image" custom post type). So images with most terms in common should be listed first. But this does not seem to be ...
0
votes
0answers
14 views
How to display related post with custom post type detail page?
global $post;
$terms = get_the_terms( $post->ID , 'product_tags', 'string');
$do_not_duplicate[] = $post->ID;
if(!empty($terms)){
echo ...
0
votes
0answers
32 views
Registration check if a field exist
I use Cimy Extra fields plugin to add a phone field in registration form and user profile.
This field can be edit only once if it empty.
...
0
votes
0answers
23 views
Outputting Page Content in Two Places
I am working on a site for a client that is going to be structured very similarly to a store (though without the e-commerce capabilities). I am getting a bit hung up on how to output page content in ...
0
votes
1answer
36 views
How to check if a custom user profile field is empty
i have this code to limit the comments per user.
<!-- #only one comment -->
<?php global $current_user,$post;
$usercomment = get_comments(array('author_email' => ...
0
votes
1answer
27 views
Custom Style per Post, How to Display Custom-Styled Single post on Homepage?
This question probably has simple answer, but I'm not an expert programmer so lemme explain my question chronologically.
I apply custom style for every single post, and it works using the following ...
0
votes
1answer
51 views
display only parent replies count in index.php
Currently my posts display the total count of comments (i.e both replies and sub-comments).
I want to display only the number of reply count in my index.php (and not comments for a reply) for each ...
0
votes
1answer
33 views
Issue with WordPress native theme customizer function and jquery ui tabs
So I am using the customizer in my theme which have tabs in the page utilizing jQuery UI Tabs. When I load up the customizer, it would the sidebar accordion would be sluggish and the preview page ...
0
votes
0answers
78 views
Can I create my own custom Attachment Display Setting?
I'm porting a client site over to WP from an old customized .Net CMS and something their existing system does well is the site admin interface contains a simple utility for uploading media to the ...
0
votes
0answers
25 views
Memory Use in Custom Post Type, Listing All in Admin [closed]
I have a question regarding memory in listing posts.
When you click a tab "List All" logically it should not use a lot of memory. A simple query, a simple list. Yet I find 256 megabytes of memory is ...
5
votes
1answer
134 views
Wordpress Permalink changes to question mark (?) in URL
My Permalink custom url is /%post_id%/%postname%/
and my website is in Persian language, for some posts the Permalink is change in URL from
...
2
votes
2answers
50 views
Structure for projects and clients
I have a client who has requested a WP based portfolio where they will present their projects and clients, filtered by categories and tags. They also wish to filter all projects done for a particular ...
0
votes
0answers
70 views
Javascript conflict Quform with BG Slider [closed]
My background slider is not working only on pages that have the QuForm plugin on it.
Their forum said that this was the problem on my footer
<style type="text/css">
#slide-list {
...
0
votes
0answers
43 views
Customize Link button in TinyMCE
I would like to add a text field to the popup that appears when I click on the link button in the visual editor and add a function that uses this input.
Background:
I'm using Lightbox Plus and I ...
0
votes
1answer
22 views
Post interior margin in twenty eleven theme
I'm trying to customize the aspect of a single format post, in my case is "Link".
I've added a different color background so they look different, editing the CSS as this:
.format-link .entry-content ...
0
votes
1answer
27 views
Customizing admin look and feel for just one particular type of user
Is it possible to change the admin look and feel for just one particular type of user or a group of users.
This is not a major requirement for what I am doing at present but a nice to have feature. ...
0
votes
0answers
23 views
force to load media-views css styles
I'm creating a modal window similar to the one media upload modal window that's part of the core WP. I'd like to use the same styles that are already there, I noticed that the styles are
loaded via ...
1
vote
0answers
39 views
Getting Theme element into plugins page editor in wp admin
I'm having a hardtime integrating a theme editing element (in default page/post editor in wp-admin) into page/post editor made by the plugin BU Versions.
Basicly I need this theme element
to ...
0
votes
1answer
75 views
add sidebar area to header of child theme
How can I add some extra sidebar locations for widgets in a child theme. The difficulty I'm having is because the parent theme uses some pretty gnarly setup to define the current sidebars.
I would ...
1
vote
1answer
38 views
Pushing stored procedure to a multisite database in WordPress
I am given a WordPress multisite and need to extract information from the site.
I have written a stored procedure that recursively builds a tree relationship for posts of a certain kind.
Now I am ...
1
vote
0answers
27 views
Custom column working problem
I am adding a column to manage number of post shares on twitter. I made this code:
function Twits($url) {
$s = ...
0
votes
1answer
61 views
Change the style of h1, h2, only in post entry
I would like to change the style of h1, h2, ... ONLY in post entry (when writing a new post).
Default settings is just too big and has a different format, because I use Google fonts. I was using ...
0
votes
1answer
39 views
How to Add Additional Search Button?
I have added function to functions.php so authors can search only their published content. I would like to add additional "Search my posts" button to searchform.php so only logged in users would see - ...
1
vote
2answers
67 views
Custom editor field displaying HTML in Visual editor
I am trying to add a custom WordPress editor field to the General Settings page in the admin. I have it working except that when you save anything with HTML it converts all the code to HTML entities ...
0
votes
0answers
26 views
Multiple media upload frames
Hello WordPress users,
I'm stuck with a problem while building my WordPress plugin.
I want to use 2 Media Upload iframes in on one plugin page.
I tried multiple scripts. Curretly I'm using the code ...
0
votes
0answers
13 views
login on my custom website using wordpress users information,
I am working on a custom php website, that is not in wordpress, its in phpCake, this site is about to complete.
my client said, login sections should work using same users that are in his other site ...
1
vote
1answer
67 views
Modify custom Users Manage page
I'm trying to create a submenu page under 'Users' which is like the 'All Users' page but for listing users of specific roles only. Let's just call this submenu page 'Customer'.
So far I managed to ...
0
votes
0answers
26 views
how to customize (change) thumbnail size in portfolio page [closed]
i'm new to wordpress. my web is www.faust-photo.com. i'm using "flexible" theme from elegant themes. They have 3 standard thumbnail in portfolio page which is small, medium, and large. I want to ...
0
votes
1answer
80 views
Wordpress in “Couch Mode”?
I am trying to setup a "Couch Mode" (distraction free reading) on my WordPress blog as laid out in this article.
The guide in the article follows these steps:
Create a new page in WordPress with ...



