anix
Forum Replies Created
-
Forum: Plugins
In reply to: [Zapier for WordPress] The plugin does not have a valid header.Me too. Would have loved to use Zapier but can’t when their plugin doesn’t work.
And they want us to pay for Zaps as well, this is crazy.
Forum: Plugins
In reply to: [Crelly Slider] Slider not full width on mobile or tabledThanks for clarifying that. Will look into other options.
Forum: Plugins
In reply to: [Crelly Slider] Slider not full width on mobile or tabledIf you think we can make the external htlm layer work, then I am up to try it.
Yes, would love your help.
Forum: Plugins
In reply to: [Crelly Slider] Slider not full width on mobile or tabledI understand but then the text flashes between the slides and I want it static.
I did add the javascript to the other version as well. https://www.picturethisland.com/hp-copy
Can you slider do what I am needing, or do I need to find another solution?
Forum: Plugins
In reply to: [Crelly Slider] Slider not full width on mobile or tabledUnfortunately that didn’t fix it. It is still small.
Forum: Plugins
In reply to: [Crelly Slider] Slider not full width on mobile or tabledI do have a version with the slides as background images but I couldn’t find a way to stop the text from flickering between slides. That is why I have a version with just one slide so the text can be the top layer and stay static for all of the image changes underneath.
Here you can see it with the images as background images. This version is also having issues on a tablet, it happens with the 2nd slide.
https://www.picturethisland.com/hp-copyForum: Plugins
In reply to: [Alpine Photo Tile for Instagram] Illegal string offsetI have two widgets on the page, the first one works but the second one will error out. I can remove and re-add it and then it will work for a bit, then break. I disabled cache and now it seems to work, at least for now.
When I click on Create 1:1 video chat it goes here and the page is blank with just the number 1 in the source code.
FYI – I just put in the latest release of your plugin and still have the above issue as well as this one.
Forum: Fixing WordPress
In reply to: Different Text on Some Category Pages (Codex)I did something similar. I looped through all of the categories and depending on the category id, I added that category name to a variable which then prints after the loop. You can do something similar.
Here is my code:
$theCatName = ""; foreach((get_the_category()) as $category) { if ($category->cat_ID != '36' && $category->cat_ID != 39 && $category->cat_ID != '8') { $theCatName = $theCatName.", ".$category->cat_name; } } echo $theCatName;
Forum: Plugins
In reply to: Adding custom text to Category pagesCheck out this post, it helped me do the type of thing: https://www.ads-software.com/support/topic/208926
Forum: Fixing WordPress
In reply to: Post content only showing on index pageI uploaded everything again and it now works.
Forum: Fixing WordPress
In reply to: Post content only showing on index pageI switched to the default theme and I still have this problem.