jacorre
-
Custom Taxonomy Archive issues
Ok talk about pulling my hair out! I went back to the standard loop but this time I changed the exclude_from_search from true to false when registering the custom post type. The custom posts show up and the paging is working fine. AHHHH! Thanks for …
-
Custom Taxonomy Archive issues
@pixelgrid I tried using WP_Query and I am getting what I expect in terms of seeing the posts I expect, but yes the previous/next links for pagination are not appearing. I'm not sure I understand your suggestion for the pagination hack? If I am…
-
Custom Taxonomy Archive issues
I'm just confused that everything I've read about the custom taxonomy template leads me to believe I don't need to use WP_Query or query_posts. All I need to do is copy the archive.php template file and name it taxonomy-{taxonomy-slug…
-
Close HTML tags within loop on an uneven number?
I am using a grid system with rows and columns of divs (no tables). I believe I have found a solution. At the end of the loop I can close the tags by checking if the modulus equals zero or not. Thanks!
-
Action or hook upon saving a custom options WordPress page?
In case anyone is interested, I found the following answer that helped.
-
jQuery Save/Load Sortable List
Anyone have suggestions on this? Still haven't figured out how to proceed? I understand how to save the order in an array, but not sure how to load the saved order and still keep the content within the items in tact?
-
which is the best forums software ?
If you use WordPress for your website, you can install a forum plugin. There are many out there just depends what you're looking for.
-
Feedback on my Interactive Sports Diagrams
@Mottie and @pmac627, I have added preset formations to the sport of Soccer (still need to work on the other sports next). I also included a Save option which uses local storage. A message will appear stating nothing can be saved if the user's…
-
Function name as variable?
I was thinking of using a switch statement but that would bloat the code and I was really hoping for less code to manage and hopefully a smaller file size. Looks like the method @traq suggested seems to be the better option.
-
Function name as variable?
Thanks @traq! So far, my testing has been successful in a few browsers!
-
Function name as variable?
I have to make it dynamic because I'm calling it from a click and checking some things before deciding which function to call. For example I'm checking screen size and then calling functions based on that as well as another value. The two …
-
jQuery Object to HTML?
I might have to change my approach actually now that I've been testing some more. I think I need to have a containing element and it might actually be easier. Thanks for everyone's help!
-
jQuery Object to HTML?
.html() only seems to work on an element that contains the divs I want to grab. I don't have a containing element except body and I don't want to grab ALL of the html in body. So I use find to grab all the divs with a class of findme. Tha…
-
jQuery Object to HTML?
Will have to try .html() again because I had already tried it but didn't think it worked as expected.
-
jQuery Object to HTML?
Might not be explaining myself good. After finding all the divs with the class I'm looking for, I end up with those divs wrapped up as an object. So when I try and append to the body all I get is Object Object. What I want is all the HTML in …
-
Any thoughts on how to get social sharers to disply correctly on mobile
Might want to look into media queries. They allow you to alter the styling based on screen size. So you could adjust the positioning of the social bar based on the size of the screen.
-
Please help me to achive this WP login form styling ......
You would set the background image of the input field to the icon of the man using CSS. You'll have to play with the image's position to get it just right.
-
Wordpress CMS Question
Above the editor, there's a button you can click to upload images. There will be an option to insert the image into the editor. P.S. You don't need to create template pages for each page of a website like the video suggests. Usually templ…
-
Feedback on my Interactive Sports Diagrams
Any suggestions on how to handle the screen orientation in relation to the player positions on the field? I adjust the field orientation based on the screen size. But I think it would be a bit difficult to adjust the positions of the players based o…
-
Feedback on my Interactive Sports Diagrams
@Mottie I included arrows to drag out to show direction, but yes people have been asking for a way to draw lines. I was trying to keep it simple but I guess I can see a need for drawing movement.
-
Feedback on my Interactive Sports Diagrams
Thanks for the feedback and suggestions! I will definitely take them into consideration and continue to fine tune the diagram functionality.
-
What can be used to see what's loading during log in?
I will check if it has anything to do with css, javascript, etc but I really think it's something with either plugins or theme code that's causing a lag time while trying to perform a filter or action. But I've tried disabling plugins…
-
How to make array key lowercase?
Thanks jamy_za I like that method better. Less code! And testing it online seems to work nicely. Thanks again!
-
How to make array key lowercase?
I did see that function but didn't seem to work for me. I may have been using it wrong. I'll try again and see. Thanks!
-
Can you append values to the end of a url?
I got it! The variables that I defined are available after the search form is processed. So what I did was include those variables within the url and then appended the orderby and order to the end. For example:
-
Can you append values to the end of a url?
The other option I guess is trying to use sessions.
-
Can you append values to the end of a url?
I think the problem is that after I run the search, those variables aren't stored anywhere to access again, they are just in the url. So if I try and append the orderby and order to the end of the url, it doesn't remember what the previous…
-
Include additional fields on registration form and email template?
Nevermind. I got it working. Still some issues with the plugin which I mentioned to the developer.
-
Wordpress installed in subdomain but want to run on root
I guess I would just include the exact url. Are there any repurcussions to using subdomain vs subfolder when you want to store the files there but run the site from the root?