Questions tagged [wordpress-thesis-theme]

Thesis is a theme for WordPress that takes uses a "hook" framework to allow almost complete customization of the WordPress site without heavy coding.

Thesis is a theme for WordPress that uses a "hook" framework to allow almost complete customization of the WordPress site without heavy coding.


Related Tags

104 questions
4
votes
7 answers

IE 8 Crashes When Loading Site, Can't Debug -

http://bizzocall.com/faq/ - Works well in all other browswers, but when I test it with the developer tools in IE 8 compatibility it just crashes. I've looked at all the answers and it seems like each person has different problems (I've looked for…
3
votes
2 answers

How to hide advanced custom fields(ACF) in the WP-admin UI?

Check the screenshot below; all I want to do is to hide certain ACF fields for custom users in the wordpress backend.
3
votes
2 answers

Show WooCommerce breadcrumbs on single product page

I bought a WordPress template, Zerif Pro, from Themeisle which support WooCommerce. The template WooCommerce pages don't show the breadcrumbs which allow the user to navigate from page to page. Below is the example I found online: I searched for…
CK Tan
  • 596
  • 2
  • 10
  • 25
2
votes
0 answers

How to show the custom menu page where user is allowed to show only profile page?

I want to register custom menu page where user membership role is "I Want A Personal Trainer". But the plugin already used in this site is show only profile page on dashboard for the specific user. Now i want to force it to show for user…
rajwa766
  • 604
  • 13
  • 31
2
votes
1 answer

Wordpress post text area missing issue

I have an issue that is in wordpress when i click on add new post button the post form appears it is showing everything on that form except the main content text area it's simply not there. I just updated my wordpress and this happens. Now I have…
2
votes
1 answer

Wordpress: no such method 'instance' for menu widget instance

i am using wordpress 4.7.3 version. I installed a new theme. I find an error in the console next to a textarea. Uncaught Error: no such method 'instance' for menu widget instance the code is: jQuery(function() { …
Matteo Enna
  • 1,285
  • 1
  • 15
  • 36
2
votes
4 answers

Remove "Get smart with the Thesis Wordpress Theme" on wordpress footer

Been spending a couple of hours trying to remove this texts on the footer "Get smart with the Thesis" on my wordpress site. I used thesis theme. I've tried looking for the footer file containing the texts but no luck. I also tried removing it from…
mr.b
  • 2,708
  • 8
  • 39
  • 64
2
votes
4 answers

Add pagination is custom archives page on WordPress (Thesis Theme)

I'm using the following php code on a page to show 10 posts per page from a single category. function my_page_of_posts5() { if (is_page('10')) { $custom_loop = new WP_Query('posts_per_page=10&cat=9'); echo '
Bhanu Chawla
  • 1,138
  • 2
  • 13
  • 26
1
vote
2 answers

JQuery Issue with Internet Explorer

I'm using JQuery in a Wordpress site (Thesis theme) to dynamically swap images. Everything works as expected in Chrome/Firefox/Safari, but the images don't show up at all in IE. Where have I gone wrong? Code below, dev site at…
1
vote
1 answer

Wordpress add_filter() to add first image to RSS -- causing server error

I am trying to use this function in functions.php to grab the thumbnail of posts and add them to my RSS feed. function featuredtoRSS($content) { global $post; if ( has_post_thumbnail( $post->ID ) ) { $content = '' .…
pepe
  • 9,799
  • 25
  • 110
  • 188
1
vote
0 answers

Remove likes from the list in wordpress page template not working

I am creating a custom wordpress theme in that i am using following from github . Full Code Now i am trying to list all the liked posts by the current login user but removing user likes not working here is my code.
1
vote
2 answers

Import Comments from Disqus to Wordpress

I love Disqus but it doesn't work with the current theme I'm using (Thesis 1.8) and therefore need to part ways. Does anyone know how to export my comments out of Disqus and into Wordpress? I have been unable to make this happen even after using the…
Rishi
  • 33
  • 1
  • 4
1
vote
1 answer

Changing the Wordpress Theme gives [thb_image image] shortcode instead of the image

So I am trying to change the theme of my WordPress blog. I have visual composer installed. When I try to change the theme, the featured images for the posts show up fine but the in post images are getting replaced by shortcodes like this [thb_image…
1
vote
1 answer

In publish meta-box, how to make post_status conditional to certain users

I want to let custom user role 'cm' only see 'cm approved' and 'cm rejected', and'rm' only see 'cm approved', 'rm approved', 'rm rejected' in the publish meta-box. See my screenshot below, thanks!
1
2 3 4 5 6 7