Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
42 commits
Select commit Hold shift + click to select a range
62c5b39
- Adding support for MICE IFRAME in the WooC Extension
sol-loup Feb 11, 2025
9564eb4
- Adding support for MICE IFRAME in the WooC Extension
sol-loup Feb 11, 2025
afa1975
Changing iframe connection setting to use a function instead of a con…
sol-loup Feb 13, 2025
0852358
Adding new rest endpoints to capture locally stored token and config …
sol-loup Feb 14, 2025
24bd466
restoring css
sol-loup Feb 14, 2025
d57b78e
Merge branch 'MICE' into MICE-2
sol-loup Feb 14, 2025
8f62598
Adding functionality to render the management page view
sol-loup Feb 18, 2025
5ae6adc
Fleshing out calls, ensuring correct gating of logic
sol-loup Feb 19, 2025
b573527
Merge branch 'main' into MICE
sol-loup Feb 19, 2025
715a1f8
Merge branch 'MICE' into MICE-2
sol-loup Feb 19, 2025
d96d149
Merge branch 'MICE-2' into MICE-3
sol-loup Feb 19, 2025
2d23d6f
Adding tests for URL generation and connection
sol-loup Feb 24, 2025
f1bc045
Applying correct lint fixes
sol-loup Feb 24, 2025
a6b44ad
Merge branch 'MICE' into MICE-2
sol-loup Feb 24, 2025
52f2ccb
Fixing further lint complaints
sol-loup Feb 24, 2025
21443f5
Merge branch 'MICE' into MICE-2
sol-loup Feb 24, 2025
dfa081e
lint fixes
sol-loup Feb 24, 2025
a2eb24c
Merge branch 'MICE-2' into MICE-3
sol-loup Feb 24, 2025
9119701
Fixing lint complaints
sol-loup Feb 24, 2025
48cb21b
Merge branch 'MICE-3' into MICE-4
sol-loup Feb 24, 2025
6ec376e
Additional test cases and fixes
sol-loup Feb 25, 2025
6348c57
Merge branch 'main' into MICE
sol-loup Feb 25, 2025
9a3e70e
Merge branch 'MICE' into MICE-2
sol-loup Feb 25, 2025
ae2ba7c
Merge branch 'MICE' into MICE-3
sol-loup Feb 25, 2025
a77ec3e
Merge branch 'MICE-2' into MICE-3
sol-loup Feb 25, 2025
101ee06
Merge branch 'MICE-3' into MICE-4
sol-loup Feb 25, 2025
b6a31b8
Fixing remaining lint issue
sol-loup Feb 25, 2025
3d2a206
Add enhanced onboarding method and update connection settings
sol-loup Feb 25, 2025
ef8f1ec
Disable enhanced onboarding (to allow safe land) and update platform …
sol-loup Feb 26, 2025
88775ff
Expanding range of parameters setttable by ajax settings endpoint
sol-loup Feb 26, 2025
3781821
Adding Uninstall functionality, updating tests
sol-loup Feb 26, 2025
e3827c3
Updating tests; changing implmentation of iframe generation to consis…
sol-loup Feb 27, 2025
cdb2391
Merge branch 'main' into MICE-4
sol-loup Feb 27, 2025
ea2b40d
Merge branch 'main' into MICE-4
carterbuce Mar 1, 2025
792d304
fix multisite behavior
carterbuce Mar 5, 2025
a0e01b8
Update some params for the MiCE usecase
jczhuoMeta Mar 6, 2025
0b08569
Formatting fixes for multi-site
sol-loup Mar 6, 2025
d0aa0ce
Merge pull request #2925 from facebook/MICE-4-param-update
jczhuoMeta Mar 6, 2025
6b8ba81
Addressing vink comments
sol-loup Mar 6, 2025
805ce90
Merge branch 'main' into MICE-4
sol-loup Mar 6, 2025
e072b0b
Adding more comprehensive test for management url generation
sol-loup Mar 6, 2025
78e3c59
final comment fixes
sol-loup Mar 6, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions assets/css/admin/facebook-for-woocommerce-connection.css
Original file line number Diff line number Diff line change
Expand Up @@ -76,3 +76,12 @@
#wc-facebook-connection-box .uninstall {
vertical-align: middle;
}

#facebook-commerce-iframe {
width: 100%;
min-height: calc(100vh - 200px);
}

.woocommerce-embed-page #wpbody-content {
padding-bottom: 0;
}
1 change: 1 addition & 0 deletions class-wc-facebookcommerce.php
Original file line number Diff line number Diff line change
Expand Up @@ -220,6 +220,7 @@ public function init() {
}

$this->connection_handler = new WooCommerce\Facebook\Handlers\Connection( $this );
new WooCommerce\Facebook\Handlers\MetaExtension();
$this->webhook_handler = new WooCommerce\Facebook\Handlers\WebHook( $this );
$this->tracker = new WooCommerce\Facebook\Utilities\Tracker();

Expand Down
Loading